Name | Type | Description | Notes |
---|---|---|---|
reason | str | [optional] | |
type | RejectionType | [optional] |
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)