Fee

data class Fee(    val taxes: List<DocumentTax>? = null,     val beforeTax: BigDecimal? = null,     val afterTax: BigDecimal? = null,     val description: String? = null,     val type: FeeTypesEnum? = null)

See also

Constructors

Link copied to clipboard
constructor(    taxes: List<DocumentTax>? = null,     beforeTax: BigDecimal? = null,     afterTax: BigDecimal? = null,     description: String? = null,     type: FeeTypesEnum? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val afterTax: BigDecimal? = null
Link copied to clipboard
val beforeTax: BigDecimal? = null
Link copied to clipboard
val description: String? = null
Link copied to clipboard
val taxes: List<DocumentTax>? = null
Link copied to clipboard
val type: FeeTypesEnum? = null