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