Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 925 Bytes

AccountCallbacks.md

File metadata and controls

28 lines (20 loc) · 925 Bytes

AccountCallbacks

Properties

Name Type Description Notes
credential_url str [optional]

Example

from sparkfly_client.models.account_callbacks import AccountCallbacks

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

# convert the object into a dict
account_callbacks_dict = account_callbacks_instance.to_dict()
# create an instance of AccountCallbacks from a dict
account_callbacks_form_dict = account_callbacks.from_dict(account_callbacks_dict)

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