Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

GetStatus2XXResponse

Properties

Name Type Description Notes
version str [optional]
commit_tag str [optional]
update_available bool [optional]
commits_behind float [optional]
restart_required bool [optional]

Example

from seerr.models.get_status2_xx_response import GetStatus2XXResponse

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

# convert the object into a dict
get_status2_xx_response_dict = get_status2_xx_response_instance.to_dict()
# create an instance of GetStatus2XXResponse from a dict
get_status2_xx_response_from_dict = GetStatus2XXResponse.from_dict(get_status2_xx_response_dict)

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