FolderListItemTotalsDto

data class FolderListItemTotalsDto(amount: BigDecimal, count: Int, currencyCode: String, displayAmount: String)

Parameters

amount

The total amount of all receipts in the folder matching the currency code.

count

The count of all reeipts in the folder matching the currency code. Must be a valid currency code as returned by our /lookups/currencies endpoint

currencyCode

The currency code associated with the total amount of the receipts in the folder matching this currency. It will be a valid currency code as returned by our /lookups/currencies endpoint

displayAmount

The total amount of all receipts in the folder matching the currency code formatted based on the specified locale, or if not specified the locale of the user.

Constructors

FolderListItemTotalsDto
Link copied to clipboard
fun FolderListItemTotalsDto(amount: BigDecimal, count: Int, currencyCode: String, displayAmount: String)
The total amount of all receipts in the folder matching the currency code.

Properties

amount
Link copied to clipboard
@SerializedName(value = amount)
val amount: BigDecimal
The total amount of all receipts in the folder matching the currency code.
count
Link copied to clipboard
@SerializedName(value = count)
val count: Int
The count of all reeipts in the folder matching the currency code.
currencyCode
Link copied to clipboard
@SerializedName(value = currencyCode)
val currencyCode: String
The currency code associated with the total amount of the receipts in the folder matching this currency.
displayAmount
Link copied to clipboard
@SerializedName(value = displayAmount)
val displayAmount: String
The total amount of all receipts in the folder matching the currency code formatted based on the specified locale, or if not specified the locale of the user.