mirror of https://github.com/itflow-org/itflow
21 lines
336 B
PHP
21 lines
336 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class UsageRecord
|
|
*
|
|
* @package Stripe
|
|
*
|
|
* @property string $id
|
|
* @property string $object
|
|
* @property bool $livemode
|
|
* @property int $quantity
|
|
* @property string $subscription_item
|
|
* @property int $timestamp
|
|
*/
|
|
class UsageRecord extends ApiResource
|
|
{
|
|
const OBJECT_NAME = "usage_record";
|
|
}
|