Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 951 Bytes

File metadata and controls

30 lines (21 loc) · 951 Bytes

ApiInfoResource

Properties

Name Type Description Notes
current str [optional]
deprecated List[str] [optional]

Example

from radarr.models.api_info_resource import ApiInfoResource

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

# convert the object into a dict
api_info_resource_dict = api_info_resource_instance.to_dict()
# create an instance of ApiInfoResource from a dict
api_info_resource_from_dict = ApiInfoResource.from_dict(api_info_resource_dict)

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