HyperwalletFee

public struct HyperwalletFee : Codable, Hashable

Representation of the fee

  • The fee rate type (FLAT or PERCENT)

    Declaration

    Swift

    public let feeRateType: String?
  • The fee value

    Declaration

    Swift

    public var value: String?
  • The fee currency

    Declaration

    Swift

    public var currency: String?
  • The minimum fee, or nil if none exists

    Declaration

    Swift

    public let minimum: String?
  • The maximum fee, or nil if none exists

    Declaration

    Swift

    public let maximum: String?