Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

APIGetUserBadgesResponse

Properties

Name Type Description Notes
status APIStatus
user_badges List[UserBadge]

Example

from client.models.api_get_user_badges_response import APIGetUserBadgesResponse

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

# convert the object into a dict
api_get_user_badges_response_dict = api_get_user_badges_response_instance.to_dict()
# create an instance of APIGetUserBadgesResponse from a dict
api_get_user_badges_response_from_dict = APIGetUserBadgesResponse.from_dict(api_get_user_badges_response_dict)

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