Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

UserLimited.md

File metadata and controls

33 lines (24 loc) · 1.1 KB

UserLimited

Properties

Name Type Description Notes
avatar_thumb_url str Avatar thumbnail URL of the User [optional]
avatar_url str Avatar URL 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

Example

from equinix_metal.models.user_limited import UserLimited

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

# convert the object into a dict
user_limited_dict = user_limited_instance.to_dict()
# create an instance of UserLimited from a dict
user_limited_form_dict = user_limited.from_dict(user_limited_dict)

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