NoahBusinessFee

data class NoahBusinessFee(val feeBase: String? = null, val feePct: String? = null, val fiatCurrency: String? = null)

Optional business (partner) fee applied to a Noah payout or payin.

JSON keys use PascalCase to match the Noah API wire format. The BFF forwards this object straight through to Noah, so the inner field names must stay PascalCase even though the surrounding request keys are camelCase.

Constructors

Link copied to clipboard
constructor(feeBase: String? = null, feePct: String? = null, fiatCurrency: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "FeeBase")
val feeBase: String? = null
Link copied to clipboard
@SerializedName(value = "FeePct")
val feePct: String? = null
Link copied to clipboard
@SerializedName(value = "FiatCurrency")
val fiatCurrency: String? = null