EditDocumentTaxableAmountDto

data class EditDocumentTaxableAmountDto(val taxes: List<DocumentTaxDto>? = null, val beforeTax: BigDecimal? = null, val afterTax: BigDecimal? = null)

Parameters

taxes

The taxes of this amount. The content passed in the PATCH call will completely replace the current content.

beforeTax

The total amount before taxes

afterTax

The total amount after taxes

Constructors

Link copied to clipboard
constructor(taxes: List<DocumentTaxDto>? = null, beforeTax: BigDecimal? = null, afterTax: BigDecimal? = null)

Properties

Link copied to clipboard
@SerializedName(value = "afterTax")
val afterTax: BigDecimal? = null
Link copied to clipboard
@SerializedName(value = "beforeTax")
val beforeTax: BigDecimal? = null
Link copied to clipboard
@SerializedName(value = "taxes")
val taxes: List<DocumentTaxDto>? = null