CardServiceFeeCategory

public enum CardServiceFeeCategory : Codable

Card activation fee category model.

  • The activation fee.

    Declaration

    Swift

    case activationFee(CardActivationFee)
  • The transaction fee.

    Declaration

    Swift

    case transactionFee(CardTransactionFee)
  • The replacement/reissue fee.

    Declaration

    Swift

    case replacementReissueFee(CardReplacementReissueFee)
  • Empty or unknown.

    Declaration

    Swift

    case none
  • Creates a new instance by decoding from the given decoder.

    Declaration

    Swift

    public init(from decoder: Decoder) throws

    Parameters

    decoder

    The decoder to read data from.

  • Encodes the instance by encoding to the given decoder.

    Declaration

    Swift

    public func encode(to encoder: Encoder) throws

    Parameters

    encoder

    The encoder to write data to.