Name | Type | Description | Notes |
---|---|---|---|
callbacks | AccountCallbacks | [optional] |
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)