Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.35 KB

File metadata and controls

37 lines (28 loc) · 1.35 KB

GetRequestCount2XXResponse

Properties

Name Type Description Notes
total float [optional]
movie float [optional]
tv float [optional]
pending float [optional]
approved float [optional]
declined float [optional]
processing float [optional]
available float [optional]
completed float [optional]

Example

from seerr.models.get_request_count2_xx_response import GetRequestCount2XXResponse

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

# convert the object into a dict
get_request_count2_xx_response_dict = get_request_count2_xx_response_instance.to_dict()
# create an instance of GetRequestCount2XXResponse from a dict
get_request_count2_xx_response_from_dict = GetRequestCount2XXResponse.from_dict(get_request_count2_xx_response_dict)

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