Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.05 KB

File metadata and controls

33 lines (24 loc) · 1.05 KB

FeedRequest

Properties

Name Type Description Notes
name str [optional]
public bool [optional]
deletion_status DeletionStatusEnum [optional]
deletion_requested_at datetime [optional]
deletion_error str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]