Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1015 Bytes

File metadata and controls

32 lines (23 loc) · 1015 Bytes

AuthUserFields

Properties

Name Type Description Notes
created_at datetime [optional]
email str [optional]
name str [optional]
username str [optional]

Example

from hyperstack.models.auth_user_fields import AuthUserFields

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

# convert the object into a dict
auth_user_fields_dict = auth_user_fields_instance.to_dict()
# create an instance of AuthUserFields from a dict
auth_user_fields_from_dict = AuthUserFields.from_dict(auth_user_fields_dict)

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