Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 894 Bytes

Subjects.md

File metadata and controls

30 lines (21 loc) · 894 Bytes

Subjects

Subjects holds a repeated field of Subject type.

Properties

Name Type Description Notes
subjects List[Subject] A list of subjects. [optional]

Example

from permify.models.subjects import Subjects

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

# convert the object into a dict
subjects_dict = subjects_instance.to_dict()
# create an instance of Subjects from a dict
subjects_from_dict = Subjects.from_dict(subjects_dict)

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