Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

APICreateUserBadgeResponse

Properties

Name Type Description Notes
status APIStatus
user_badge UserBadge
notes List[str] [optional]

Example

from client.models.api_create_user_badge_response import APICreateUserBadgeResponse

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

# convert the object into a dict
api_create_user_badge_response_dict = api_create_user_badge_response_instance.to_dict()
# create an instance of APICreateUserBadgeResponse from a dict
api_create_user_badge_response_from_dict = APICreateUserBadgeResponse.from_dict(api_create_user_badge_response_dict)

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