Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 1.42 KB

Expense.md

File metadata and controls

23 lines (18 loc) · 1.42 KB

Expense

The Expense Object ### Description The Expense object is used to represent a company's expenses ### Usage Example Fetch from the GET Expense endpoint and view a company's expense.

Properties

Name Type Description Notes
id str [optional] [readonly]
remote_id str, none_type The third-party API ID of the matching object. [optional]
remote_data [RemoteData], none_type [optional] [readonly]
transaction_date datetime, none_type When the transaction occurred. [optional]
remote_created_at datetime, none_type When the expense was created. [optional]
account str, none_type [optional]
contact str, none_type [optional]
total_amount float, none_type The expense's total amount. [optional]
currency object, none_type The expense's currency. [optional]
memo str, none_type The expense's private note. [optional]
lines [ExpenseLine] [optional] [readonly]
remote_was_deleted bool Indicates whether or not this object has been deleted by third party webhooks. [optional] [readonly]

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