Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.04 KB

UserReferencesDto.md

File metadata and controls

27 lines (20 loc) · 1.04 KB

UserReferencesDto

Properties

Name Type Description Notes
users List[UserReference] [optional]

Example

from phrasetms_client.models.user_references_dto import UserReferencesDto

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

# convert the object into a dict
user_references_dto_dict = user_references_dto_instance.to_dict()
# create an instance of UserReferencesDto from a dict
user_references_dto_from_dict = UserReferencesDto.from_dict(user_references_dto_dict)

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