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)

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 = "description")
val description: String? = null
Link copied to clipboard
@SerializedName(value = "taxes")
val taxes: List<DocumentTaxDto>? = null
Link copied to clipboard
@SerializedName(value = "type")
val type: FeeTypesEnum? = null