Network

@objc(PPCOrderApplicationContextNetwork)
enum Network
extension OrderApplicationContext.Network : Equatable, Hashable, RawRepresentable

The possible value of network types

  • Undocumented

    Declaration

    Swift

    case amex
  • Undocumented

    Declaration

    Swift

    case cbNationale
  • Undocumented

    Declaration

    Swift

    case cetelem
  • Undocumented

    Declaration

    Swift

    case chinaUnionPay
  • Undocumented

    Declaration

    Swift

    case confidis
  • Undocumented

    Declaration

    Swift

    case configoga
  • Undocumented

    Declaration

    Swift

    case delta
  • Undocumented

    Declaration

    Swift

    case discover
  • Undocumented

    Declaration

    Swift

    case electron
  • 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: Int)
  • jcb

    Undocumented

    Declaration

    Swift

    case jcb
  • Undocumented

    Declaration

    Swift

    case maestro
  • Undocumented

    Declaration

    Swift

    case mastercard
  • Undocumented

    Declaration

    Swift

    case solo
  • Undocumented

    Declaration

    Swift

    case star
  • Undocumented

    Declaration

    Swift

    case switchCard
  • Undocumented

    Declaration

    Swift

    case visa