| Name |
Type |
Description |
Notes |
| certification |
str |
|
|
| meaning |
str |
|
[optional] |
| order |
float |
|
[optional] |
from seerr.models.certification import Certification
# TODO update the JSON string below
json = "{}"
# create an instance of Certification from a JSON string
certification_instance = Certification.from_json(json)
# print the JSON string representation of the object
print(Certification.to_json())
# convert the object into a dict
certification_dict = certification_instance.to_dict()
# create an instance of Certification from a dict
certification_from_dict = Certification.from_dict(certification_dict)
[Back to Model list] [Back to API list] [Back to README]