29 lines
540 B
PHP
Executable File
29 lines
540 B
PHP
Executable File
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class FileLink
|
|
*
|
|
* @property string $id
|
|
* @property string $object
|
|
* @property int $created
|
|
* @property bool $expired
|
|
* @property int|null $expires_at
|
|
* @property string $file
|
|
* @property bool $livemode
|
|
* @property \Stripe\StripeObject $metadata
|
|
* @property string|null $url
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class FileLink extends ApiResource
|
|
{
|
|
const OBJECT_NAME = 'file_link';
|
|
|
|
use ApiOperations\All;
|
|
use ApiOperations\Create;
|
|
use ApiOperations\Retrieve;
|
|
use ApiOperations\Update;
|
|
}
|