Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.volley92.asso.fr
/
htdocs
/
vendor
/
stripe
/
stripe-php
/
lib
/
/srv/data/web/vhosts/www.volley92.asso.fr/htdocs/vendor/stripe/stripe-php/lib/SubscriptionItem.php
<?php namespace Stripe; /** * Class SubscriptionItem * * @property string $id * @property string $object * @property mixed $billing_thresholds * @property int $created * @property StripeObject $metadata * @property Plan $plan * @property int $quantity * @property string $subscription * @property array $tax_rates * * @package Stripe */ class SubscriptionItem extends ApiResource { const OBJECT_NAME = "subscription_item"; const PATH_USAGE_RECORDS = '/usage_records'; use ApiOperations\All; use ApiOperations\Create; use ApiOperations\Delete; use ApiOperations\NestedResource; use ApiOperations\Retrieve; use ApiOperations\Update; /** * @param string|null $id The ID of the subscription item on which to create the usage record. * @param array|null $params * @param array|string|null $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return ApiResource */ public static function createUsageRecord($id, $params = null, $opts = null) { return self::_createNestedResource($id, static::PATH_USAGE_RECORDS, $params, $opts); } /** * @param array|null $params * @param array|string|null $options * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return Collection The list of usage record summaries. */ public function usageRecordSummaries($params = null, $options = null) { $url = $this->instanceUrl() . '/usage_record_summaries'; list($response, $opts) = $this->_request('get', $url, $params, $options); $obj = Util\Util::convertToStripeObject($response, $opts); $obj->setLastResponse($response); return $obj; } }