Name | Type | Description | Notes |
---|---|---|---|
format | CustomFormat | [optional] | |
score | int | [optional] |
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)