FolderListItemTotalsDto

data class FolderListItemTotalsDto(val amount: BigDecimal, val count: Int, val currencyCode: String, val 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

Link copied to clipboard
constructor(amount: BigDecimal, count: Int, currencyCode: String, displayAmount: String)

Properties

Link copied to clipboard
@SerializedName(value = "amount")
val amount: BigDecimal
Link copied to clipboard
@SerializedName(value = "count")
val count: Int
Link copied to clipboard
@SerializedName(value = "currencyCode")
val currencyCode: String
Link copied to clipboard
@SerializedName(value = "displayAmount")
val displayAmount: String