Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.2 KB

File metadata and controls

33 lines (24 loc) · 1.2 KB

SubjectsReference

List of Subject References

Properties

Name Type Description Notes
success bool Is this a successful response? [optional]
failure_message str Details if this response failed [optional]
cache_key_name str CacheKey name [optional]
list_items List[SubjectReference] list of subjects references [optional]

Example

from valis.models.subjects_reference import SubjectsReference

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

# convert the object into a dict
subjects_reference_dict = subjects_reference_instance.to_dict()
# create an instance of SubjectsReference from a dict
subjects_reference_from_dict = SubjectsReference.from_dict(subjects_reference_dict)

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