Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 994 Bytes

ProfileFormatItem.md

File metadata and controls

30 lines (21 loc) · 994 Bytes

ProfileFormatItem

Properties

Name Type Description Notes
format CustomFormat [optional]
score int [optional]

Example

from readarr.models.profile_format_item import ProfileFormatItem

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

# convert the object into a dict
profile_format_item_dict = profile_format_item_instance.to_dict()
# create an instance of ProfileFormatItem from a dict
profile_format_item_from_dict = ProfileFormatItem.from_dict(profile_format_item_dict)

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