Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 904 Bytes

AccountInput.md

File metadata and controls

28 lines (20 loc) · 904 Bytes

AccountInput

Properties

Name Type Description Notes
callbacks AccountCallbacks [optional]

Example

from sparkfly_client.models.account_input import AccountInput

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

# convert the object into a dict
account_input_dict = account_input_instance.to_dict()
# create an instance of AccountInput from a dict
account_input_form_dict = account_input.from_dict(account_input_dict)

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