Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.05 KB

Account.md

File metadata and controls

34 lines (26 loc) · 1.05 KB

Account

Properties

Name Type Description Notes
id int [optional]
name str [optional]
enable_callbacks bool [optional]
credential_callback_url str [optional]
supports_barcode bool [optional]
created_at datetime [optional]
updated_at datetime [optional]

Example

from sparkfly_client.models.account import Account

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

# convert the object into a dict
account_dict = account_instance.to_dict()
# create an instance of Account from a dict
account_form_dict = account.from_dict(account_dict)

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