Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

ProfileFormatItemResource.md

File metadata and controls

32 lines (23 loc) · 1.12 KB

ProfileFormatItemResource

Properties

Name Type Description Notes
id int [optional]
format int [optional]
name str [optional]
score int [optional]

Example

from sonarr.models.profile_format_item_resource import ProfileFormatItemResource

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

# convert the object into a dict
profile_format_item_resource_dict = profile_format_item_resource_instance.to_dict()
# create an instance of ProfileFormatItemResource from a dict
profile_format_item_resource_from_dict = ProfileFormatItemResource.from_dict(profile_format_item_resource_dict)

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