mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-08 18:48:22 +01:00
23 lines
383 B
PHP
23 lines
383 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class UsageRecord
|
|
*
|
|
* @package Stripe
|
|
*
|
|
* @property string $id
|
|
* @property string $object
|
|
* @property string $invoice
|
|
* @property bool $livemode
|
|
* @property mixed $period
|
|
* @property string $subscription_item
|
|
* @property int $total_usage
|
|
*/
|
|
class UsageRecordSummary extends ApiResource
|
|
{
|
|
|
|
const OBJECT_NAME = "usage_record_summary";
|
|
}
|