Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 878 Bytes

Rejection.md

File metadata and controls

30 lines (21 loc) · 878 Bytes

Rejection

Properties

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

Example

from lidarr.models.rejection import Rejection

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

# convert the object into a dict
rejection_dict = rejection_instance.to_dict()
# create an instance of Rejection from a dict
rejection_from_dict = Rejection.from_dict(rejection_dict)

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