Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
name | str | [optional] |
from openapi_client.models.subject import Subject
# TODO update the JSON string below
json = "{}"
# create an instance of Subject from a JSON string
subject_instance = Subject.from_json(json)
# print the JSON string representation of the object
print(Subject.to_json())
# convert the object into a dict
subject_dict = subject_instance.to_dict()
# create an instance of Subject from a dict
subject_from_dict = Subject.from_dict(subject_dict)