Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

SubjectDataRep

Properties

Name Type Description Notes
links Dict[str, Link] [optional]
name str The subject's name [optional]
avatar_url str The subject's avatar [optional]

Example

from launchdarkly_api.models.subject_data_rep import SubjectDataRep

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

# convert the object into a dict
subject_data_rep_dict = subject_data_rep_instance.to_dict()
# create an instance of SubjectDataRep from a dict
subject_data_rep_from_dict = SubjectDataRep.from_dict(subject_data_rep_dict)

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