Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.51 KB

CustomFormatSpecificationSchema.md

File metadata and controls

37 lines (28 loc) · 1.51 KB

CustomFormatSpecificationSchema

Properties

Name Type Description Notes
id int [optional]
name str [optional]
implementation str [optional]
implementation_name str [optional]
info_link str [optional]
negate bool [optional]
required bool [optional]
fields List[ContractField] [optional]
presets List[CustomFormatSpecificationSchema] [optional]

Example

from sonarr.models.custom_format_specification_schema import CustomFormatSpecificationSchema

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

# convert the object into a dict
custom_format_specification_schema_dict = custom_format_specification_schema_instance.to_dict()
# create an instance of CustomFormatSpecificationSchema from a dict
custom_format_specification_schema_from_dict = CustomFormatSpecificationSchema.from_dict(custom_format_specification_schema_dict)

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