FundingInstrumentSubType

enum FundingInstrumentSubType
extension FundingInstrumentSubType : CaseIterable, Decodable, Encodable, Equatable, Hashable, RawRepresentable

A funding instrument’s sub type

  • Provider balance

    Declaration

    Swift

    case balance
  • Checking account

    Declaration

    Swift

    case checking
  • Provider credit

    Declaration

    Swift

    case credit
  • Cryptocurrency

    Declaration

    Swift

    case cryptocurrency
  • Provider debit

    Declaration

    Swift

    case debit
  • Incentive program

    Declaration

    Swift

    case incentive
  • Creates a new instance with the specified raw value.

    If there is no value of the type that corresponds with the specified raw value, this initializer returns nil. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }
    
    print(PaperSize(rawValue: "Legal"))
    // Prints "Optional("PaperSize.Legal")"
    
    print(PaperSize(rawValue: "Tabloid"))
    // Prints "nil"
    

    Declaration

    Swift

    init?(rawValue: String)
  • Merchant

    Declaration

    Swift

    case merchant
  • Merchant Specific Incentive

    Declaration

    Swift

    case merchantSpecific
  • PayPal Specific Incentive

    Declaration

    Swift

    case paypalSpecific
  • Prepaid

    Declaration

    Swift

    case prepaid
  • Provider

    Declaration

    Swift

    case provider
  • Savings account

    Declaration

    Swift

    case savings
  • Unknown

    Declaration

    Swift

    case unknown