Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 859 Bytes

File metadata and controls

29 lines (20 loc) · 859 Bytes

ReplyStatus

Properties

Name Type Description Notes
observed_version int [optional]

Example

from halo_client.models.reply_status import ReplyStatus

# TODO update the JSON string below
json = "{}"
# create an instance of ReplyStatus from a JSON string
reply_status_instance = ReplyStatus.from_json(json)
# print the JSON string representation of the object
print(ReplyStatus.to_json())

# convert the object into a dict
reply_status_dict = reply_status_instance.to_dict()
# create an instance of ReplyStatus from a dict
reply_status_from_dict = ReplyStatus.from_dict(reply_status_dict)

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