Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

ImportRejectionResource.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

ImportRejectionResource

Properties

Name Type Description Notes
reason str [optional]
type RejectionType [optional]

Example

from sonarr.models.import_rejection_resource import ImportRejectionResource

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

# convert the object into a dict
import_rejection_resource_dict = import_rejection_resource_instance.to_dict()
# create an instance of ImportRejectionResource from a dict
import_rejection_resource_from_dict = ImportRejectionResource.from_dict(import_rejection_resource_dict)

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