forked from LiveCarta/PayPal-PHP-Server-SDK
Beta Release 0.7.0 including: - Bug fixes - Updated model/function names - Updated models to reflect changes in APIs
144 lines
2.7 KiB
PHP
144 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* PaypalServerSdkLib
|
|
*
|
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
*/
|
|
|
|
namespace PaypalServerSdkLib\Models;
|
|
|
|
/**
|
|
* The card network or brand. Applies to credit, debit, gift, and payment cards.
|
|
*/
|
|
class CardBrand
|
|
{
|
|
/**
|
|
* Visa card.
|
|
*/
|
|
public const VISA = 'VISA';
|
|
|
|
/**
|
|
* Mastecard card.
|
|
*/
|
|
public const MASTERCARD = 'MASTERCARD';
|
|
|
|
/**
|
|
* Discover card.
|
|
*/
|
|
public const DISCOVER = 'DISCOVER';
|
|
|
|
/**
|
|
* American Express card.
|
|
*/
|
|
public const AMEX = 'AMEX';
|
|
|
|
/**
|
|
* Solo debit card.
|
|
*/
|
|
public const SOLO = 'SOLO';
|
|
|
|
/**
|
|
* Japan Credit Bureau card.
|
|
*/
|
|
public const JCB = 'JCB';
|
|
|
|
/**
|
|
* Military Star card.
|
|
*/
|
|
public const STAR = 'STAR';
|
|
|
|
/**
|
|
* Delta Airlines card.
|
|
*/
|
|
public const DELTA = 'DELTA';
|
|
|
|
/**
|
|
* Switch credit card.
|
|
*/
|
|
public const SWITCH_ = 'SWITCH';
|
|
|
|
/**
|
|
* Maestro credit card.
|
|
*/
|
|
public const MAESTRO = 'MAESTRO';
|
|
|
|
/**
|
|
* Carte Bancaire (CB) credit card.
|
|
*/
|
|
public const CB_NATIONALE = 'CB_NATIONALE';
|
|
|
|
/**
|
|
* Configoga credit card.
|
|
*/
|
|
public const CONFIGOGA = 'CONFIGOGA';
|
|
|
|
/**
|
|
* Confidis credit card.
|
|
*/
|
|
public const CONFIDIS = 'CONFIDIS';
|
|
|
|
/**
|
|
* Visa Electron credit card.
|
|
*/
|
|
public const ELECTRON = 'ELECTRON';
|
|
|
|
/**
|
|
* Cetelem credit card.
|
|
*/
|
|
public const CETELEM = 'CETELEM';
|
|
|
|
/**
|
|
* China union pay credit card.
|
|
*/
|
|
public const CHINA_UNION_PAY = 'CHINA_UNION_PAY';
|
|
|
|
/**
|
|
* The Diners Club International banking and payment services capability network owned by Discover
|
|
* Financial Services (DFS), one of the most recognized brands in US financial services.
|
|
*/
|
|
public const DINERS = 'DINERS';
|
|
|
|
/**
|
|
* The Brazilian Elo card payment network.
|
|
*/
|
|
public const ELO = 'ELO';
|
|
|
|
/**
|
|
* The Hiper - Ingenico ePayment network.
|
|
*/
|
|
public const HIPER = 'HIPER';
|
|
|
|
/**
|
|
* The Brazilian Hipercard payment network that's widely accepted in the retail market.
|
|
*/
|
|
public const HIPERCARD = 'HIPERCARD';
|
|
|
|
/**
|
|
* The RuPay payment network.
|
|
*/
|
|
public const RUPAY = 'RUPAY';
|
|
|
|
/**
|
|
* The GE Credit Union 3Point card payment network.
|
|
*/
|
|
public const GE = 'GE';
|
|
|
|
/**
|
|
* The Synchrony Financial (SYF) payment network.
|
|
*/
|
|
public const SYNCHRONY = 'SYNCHRONY';
|
|
|
|
/**
|
|
* The Electronic Fund Transfer At Point of Sale(EFTPOS) Debit card payment network.
|
|
*/
|
|
public const EFTPOS = 'EFTPOS';
|
|
|
|
/**
|
|
* UNKNOWN payment network.
|
|
*/
|
|
public const UNKNOWN = 'UNKNOWN';
|
|
}
|