27 lines
506 B
PHP
Executable File
27 lines
506 B
PHP
Executable File
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class Mandate
|
|
*
|
|
* @property string $id
|
|
* @property string $object
|
|
* @property mixed $customer_acceptance
|
|
* @property bool $livemode
|
|
* @property mixed|null $multi_use
|
|
* @property string $payment_method
|
|
* @property mixed $payment_method_details
|
|
* @property mixed|null $single_use
|
|
* @property string $status
|
|
* @property string $type
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class Mandate extends ApiResource
|
|
{
|
|
const OBJECT_NAME = 'mandate';
|
|
|
|
use ApiOperations\Retrieve;
|
|
}
|