Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.4 KB

UserLite.md

File metadata and controls

38 lines (29 loc) · 1.4 KB

UserLite

Properties

Name Type Description Notes
avatar_thumb_url str Avatar thumbnail URL of the User [optional]
created_at datetime When the user was created [optional]
email str Primary email address of the User [optional]
first_name str First name of the User [optional]
full_name str Full name of the User [optional]
href str API URL uniquely representing the User [optional]
id str ID of the User
last_name str Last name of the User [optional]
short_id str Short ID of the User
updated_at datetime When the user details were last updated [optional]

Example

from equinix_metal.models.user_lite import UserLite

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

# convert the object into a dict
user_lite_dict = user_lite_instance.to_dict()
# create an instance of UserLite from a dict
user_lite_form_dict = user_lite.from_dict(user_lite_dict)

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