Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

UpdateAccountNameResponse.md

File metadata and controls

29 lines (20 loc) · 1.02 KB

UpdateAccountNameResponse

Properties

Name Type Description Notes
success bool [optional]

Example

from luno_openapi.models.update_account_name_response import UpdateAccountNameResponse

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

# convert the object into a dict
update_account_name_response_dict = update_account_name_response_instance.to_dict()
# create an instance of UpdateAccountNameResponse from a dict
update_account_name_response_from_dict = UpdateAccountNameResponse.from_dict(update_account_name_response_dict)

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