// Order of this entry in the list of transactions.
Orderint32`json:"order,omitempty"`
// Currency ID. Default is the source account's currency, or the user's default currency. The value you submit may be overruled by the source or destination account.
CurrencyIdstring`json:"currency_id,omitempty"`
// Currency code. Default is the source account's currency, or the user's default currency. The value you submit may be overruled by the source or destination account.
// Currency code of the foreign currency. Default is NULL. Can be used instead of the foreign_currency_id, but this or the ID is required when submitting a foreign amount.
// The name of the budget to be used. If the budget name is unknown, the ID will be used or the value will be ignored.
BudgetNamestring`json:"budget_name,omitempty"`
// The category ID for this transaction.
CategoryIdstring`json:"category_id,omitempty"`
// The name of the category to be used. If the category is unknown, it will be created. If the ID and the name point to different categories, the ID overrules the name.
// ID of the source account. For a withdrawal or a transfer, this must always be an asset account. For deposits, this must be a revenue account.
SourceIdstring`json:"source_id,omitempty"`
// Name of the source account. For a withdrawal or a transfer, this must always be an asset account. For deposits, this must be a revenue account. Can be used instead of the source_id. If the transaction is a deposit, the source_name can be filled in freely: the account will be created based on the name.
SourceNamestring`json:"source_name,omitempty"`
// ID of the destination account. For a deposit or a transfer, this must always be an asset account. For withdrawals this must be an expense account.
// Name of the destination account. You can submit the name instead of the ID. For everything except transfers, the account will be auto-generated if unknown, so submitting a name is enough.