| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| public | bool | [optional] | |
| deletion_status | DeletionStatusEnum | [optional] | |
| deletion_requested_at | datetime | [optional] | |
| deletion_error | str | [optional] |
from aiochris_oag.models.feed_request import FeedRequest
# TODO update the JSON string below
json = "{}"
# create an instance of FeedRequest from a JSON string
feed_request_instance = FeedRequest.from_json(json)
# print the JSON string representation of the object
print(FeedRequest.to_json())
# convert the object into a dict
feed_request_dict = feed_request_instance.to_dict()
# create an instance of FeedRequest from a dict
feed_request_from_dict = FeedRequest.from_dict(feed_request_dict)