Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.15 KB

USER_AllOf.md

File metadata and controls

31 lines (24 loc) · 1.15 KB

USERAllOf

Properties

Name Type Description Notes
user_name str [optional] [readonly]
first_name str [optional] [readonly]
last_name str [optional] [readonly]
email str [optional] [readonly]
active bool [optional] [readonly]

Example

from phrasetms_client.models.user__all_of import USERAllOf

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

# convert the object into a dict
user__all_of_dict = user__all_of_instance.to_dict()
# create an instance of USERAllOf from a dict
user__all_of_from_dict = USERAllOf.from_dict(user__all_of_dict)

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