forked from Wavyzz/dolibarr
30 lines
523 B
PHP
30 lines
523 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class FileLink
|
|
*
|
|
* @property string $id
|
|
* @property string $object
|
|
* @property int $created
|
|
* @property bool $expired
|
|
* @property int $expires_at
|
|
* @property string $file
|
|
* @property bool $livemode
|
|
* @property StripeObject $metadata
|
|
* @property string $url
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class FileLink extends ApiResource
|
|
{
|
|
|
|
const OBJECT_NAME = "file_link";
|
|
|
|
use ApiOperations\All;
|
|
use ApiOperations\Create;
|
|
use ApiOperations\Retrieve;
|
|
use ApiOperations\Update;
|
|
}
|