mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-20 08:30:31 +00:00
26 lines
569 B
PHP
26 lines
569 B
PHP
<?php
|
|
|
|
|
|
namespace YooKassa\Model\PaymentMethod;
|
|
|
|
|
|
use YooKassa\Common\AbstractEnum;
|
|
|
|
/**
|
|
* BankCardSource - Источник данных банковской карты
|
|
* |Код|Описание|
|
|
* --- | ---
|
|
* |apple_pay|Источник данных apple_pay|
|
|
* |google_pay|Источник данных google_pay|
|
|
*
|
|
*/
|
|
class BankCardSource extends AbstractEnum
|
|
{
|
|
const APPLE_PAY = 'apple_pay';
|
|
const GOOGLE_PAY = 'google_pay';
|
|
|
|
protected static $validValues = array(
|
|
self::APPLE_PAY => true,
|
|
self::GOOGLE_PAY => true,
|
|
);
|
|
} |