Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

UpdateAccountRequest.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

UpdateAccountRequest

Properties

Name Type Description Notes
country str [optional]
language str [optional]
url str [optional]

Example

from wordlift_client.models.update_account_request import UpdateAccountRequest

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

# convert the object into a dict
update_account_request_dict = update_account_request_instance.to_dict()
# create an instance of UpdateAccountRequest from a dict
update_account_request_from_dict = UpdateAccountRequest.from_dict(update_account_request_dict)

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