DocumentFeeDto
data class DocumentFeeDto(val taxes: List<DocumentTaxDto>? = null, val beforeTax: BigDecimal? = null, val afterTax: BigDecimal? = null, val description: String? = null, val type: FeeTypesEnum? = null)
Contains info about one applied fee.
Parameters
taxes
beforeTax
afterTax
description
A user-presentable description of this fee.
type
Constructors
Link copied to clipboard
constructor(taxes: List<DocumentTaxDto>? = null, beforeTax: BigDecimal? = null, afterTax: BigDecimal? = null, description: String? = null, type: FeeTypesEnum? = null)