21 lines
301 B
PHP
Executable File
21 lines
301 B
PHP
Executable File
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class AccountLink
|
|
*
|
|
* @property string $object
|
|
* @property int $created
|
|
* @property int $expires_at
|
|
* @property string $url
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class AccountLink extends ApiResource
|
|
{
|
|
const OBJECT_NAME = 'account_link';
|
|
|
|
use ApiOperations\Create;
|
|
}
|