Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

Register200ResponseUser

Properties

Name Type Description Notes
id int [optional]
email str [optional]
name str [optional]

Example

from gateway_api_sdk.models.register200_response_user import Register200ResponseUser

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

# convert the object into a dict
register200_response_user_dict = register200_response_user_instance.to_dict()
# create an instance of Register200ResponseUser from a dict
register200_response_user_from_dict = Register200ResponseUser.from_dict(register200_response_user_dict)

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