StandardEntryClassCode

@objc(PPCOrderApplicationContextStandardEntryClassCode)
enum StandardEntryClassCode
extension OrderApplicationContext.StandardEntryClassCode : Equatable, Hashable, RawRepresentable

Describes the possible entry class codes

  • ccd

    Cash concentration and disbursement for corporate debit transaction. Used to disburse or consolidate funds. Entries are usually Optional high-dollar, low-volume, and time-critical. (e.g. intra-company transfers or invoice payments to suppliers).

    Declaration

    Swift

    case ccd
  • 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)
  • Undocumented

    Declaration

    Swift

    case none
  • ppd

    Prearranged payment and deposit entries. Used for debit payments authorized by a consumer account holder,\ and usually initiated by a company. These are usually recurring debits (such as insurance premiums).

    Declaration

    Swift

    case ppd
  • tel

    The API caller (merchant/partner) accepts authorization and payment information from a consumer over the telephone.

    Declaration

    Swift

    case tel
  • web

    The API caller (merchant/partner) accepts Debit transactions from a consumer on their website.

    Declaration

    Swift

    case web