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
23 lines
417 B
PHP
23 lines
417 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* PaypalServerSdkLib
|
|
*
|
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
*/
|
|
|
|
namespace PaypalServerSdkLib\Models;
|
|
|
|
/**
|
|
* The tokenization method that generated the ID.
|
|
*/
|
|
class VaultTokenRequestType
|
|
{
|
|
/**
|
|
* The setup token, which is a temporary reference to payment source.
|
|
*/
|
|
public const SETUP_TOKEN = 'SETUP_TOKEN';
|
|
}
|