Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 867 Bytes

ISubject.md

File metadata and controls

30 lines (21 loc) · 867 Bytes

ISubject

Properties

Name Type Description Notes
id str [optional] [readonly]
name str [optional] [readonly]

Example

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)

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