forked from LiveCarta/PayPal-PHP-Server-SDK
* Automated commit message * Automated commit message * Automated commit message * Automated commit message --------- Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
115 lines
2.2 KiB
PHP
115 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* PaypalServerSDKLib
|
|
*
|
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
*/
|
|
|
|
namespace PaypalServerSDKLib\Models;
|
|
|
|
use Core\Utils\CoreHelper;
|
|
use Exception;
|
|
use stdClass;
|
|
|
|
/**
|
|
* The address verification code for Visa, Discover, Mastercard, or American Express transactions.
|
|
*/
|
|
class AVSCode
|
|
{
|
|
public const A = 'A';
|
|
|
|
public const B = 'B';
|
|
|
|
public const C = 'C';
|
|
|
|
public const D = 'D';
|
|
|
|
public const E = 'E';
|
|
|
|
public const F = 'F';
|
|
|
|
public const G = 'G';
|
|
|
|
public const I = 'I';
|
|
|
|
public const M = 'M';
|
|
|
|
public const N = 'N';
|
|
|
|
public const P = 'P';
|
|
|
|
public const R = 'R';
|
|
|
|
public const S = 'S';
|
|
|
|
public const U = 'U';
|
|
|
|
public const W = 'W';
|
|
|
|
public const X = 'X';
|
|
|
|
public const Y = 'Y';
|
|
|
|
public const Z = 'Z';
|
|
|
|
public const NULL = 'Null';
|
|
|
|
public const ENUM_0 = '0';
|
|
|
|
public const ENUM_1 = '1';
|
|
|
|
public const ENUM_2 = '2';
|
|
|
|
public const ENUM_3 = '3';
|
|
|
|
public const ENUM_4 = '4';
|
|
|
|
private const _ALL_VALUES = [
|
|
self::A,
|
|
self::B,
|
|
self::C,
|
|
self::D,
|
|
self::E,
|
|
self::F,
|
|
self::G,
|
|
self::I,
|
|
self::M,
|
|
self::N,
|
|
self::P,
|
|
self::R,
|
|
self::S,
|
|
self::U,
|
|
self::W,
|
|
self::X,
|
|
self::Y,
|
|
self::Z,
|
|
self::NULL,
|
|
self::ENUM_0,
|
|
self::ENUM_1,
|
|
self::ENUM_2,
|
|
self::ENUM_3,
|
|
self::ENUM_4
|
|
];
|
|
|
|
/**
|
|
* Ensures that all the given values are present in this Enum.
|
|
*
|
|
* @param array|stdClass|null|string $value Value or a list/map of values to be checked
|
|
*
|
|
* @return array|null|string Input value(s), if all are a part of this Enum
|
|
*
|
|
* @throws Exception Throws exception if any given value is not in this Enum
|
|
*/
|
|
public static function checkValue($value)
|
|
{
|
|
$value = json_decode(json_encode($value), true); // converts stdClass into array
|
|
if (CoreHelper::checkValueOrValuesInList($value, self::_ALL_VALUES)) {
|
|
return $value;
|
|
}
|
|
throw new Exception("$value is invalid for AVSCode.");
|
|
}
|
|
}
|