| Name | Type | Description | Notes |
|---|---|---|---|
| observed_version | int | [optional] |
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)