Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

Status

Account status with remaining operations and signatures.

Properties

Name Type Description Notes
operation_left int Operations (invoices and validations) left. [optional]
signature_left int Signatures left. [optional]
has_active_seat bool Whether the current API key has an active Desk seat. [optional]
is_sub_key bool Whether the current API key is a sub-key (restricted key). [optional]

Example

from invoicetronic_sdk.models.status import Status

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

# convert the object into a dict
status_dict = status_instance.to_dict()
# create an instance of Status from a dict
status_from_dict = Status.from_dict(status_dict)

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