Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 972 Bytes

AccountResponse.md

File metadata and controls

29 lines (21 loc) · 972 Bytes

AccountResponse

Properties

Name Type Description Notes
account Account [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.account_response import AccountResponse

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

# convert the object into a dict
account_response_dict = account_response_instance.to_dict()
# create an instance of AccountResponse from a dict
account_response_form_dict = account_response.from_dict(account_response_dict)

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