You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromreadarr.models.i_custom_format_specificationimportICustomFormatSpecification# TODO update the JSON string belowjson="{}"# create an instance of ICustomFormatSpecification from a JSON stringi_custom_format_specification_instance=ICustomFormatSpecification.from_json(json)
# print the JSON string representation of the objectprint(ICustomFormatSpecification.to_json())
# convert the object into a dicti_custom_format_specification_dict=i_custom_format_specification_instance.to_dict()
# create an instance of ICustomFormatSpecification from a dicti_custom_format_specification_from_dict=ICustomFormatSpecification.from_dict(i_custom_format_specification_dict)