PATH:
home
/
letacommog
/
laindinois
/
OLD
/
wp-content
/
plugins
/
downtown-rest-api
/
inc
/
stripe-php
/
lib
<?php namespace Stripe; /** * Class SubscriptionItem * * @package Stripe */ class SubscriptionItem extends ApiResource { /** * This is a special case because the subscription items endpoint has an * underscore in it. The parent `className` function strips underscores. * * @return string The name of the class. */ public static function className() { return 'subscription_item'; } /** * @param array|string $id The ID of the subscription item to retrieve, or * an options array containing an `id` key. * @param array|string|null $opts * * @return SubscriptionItem */ public static function retrieve($id, $opts = null) { return self::_retrieve($id, $opts); } /** * @param array|null $params * @param array|string|null $opts * * @return Collection of SubscriptionItems */ public static function all($params = null, $opts = null) { return self::_all($params, $opts); } /** * @param array|null $params * @param array|string|null $opts * * @return SubscriptionItem The created subscription item. */ public static function create($params = null, $opts = null) { return self::_create($params, $opts); } /** * @param string $id The ID of the subscription item to update. * @param array|null $params * @param array|string|null $options * * @return SubscriptionItem The updated subscription item. */ public static function update($id, $params = null, $options = null) { return self::_update($id, $params, $options); } /** * @param array|string|null $opts * * @return SubscriptionItem The saved subscription item. */ public function save($opts = null) { return $this->_save($opts); } /** * @param array|null $params * @param array|string|null $opts * * @return SubscriptionItem The deleted subscription item. */ public function delete($params = null, $opts = null) { return $this->_delete($params, $opts); } }
[+]
..
[-] WebhookSignature.php
[edit]
[-] BitcoinReceiver.php
[edit]
[+]
HttpClient
[-] Collection.php
[edit]
[-] ThreeDSecure.php
[edit]
[-] Webhook.php
[edit]
[-] JsonSerializable.php
[edit]
[-] Order.php
[edit]
[-] BalanceTransaction.php
[edit]
[-] Product.php
[edit]
[-] Subscription.php
[edit]
[-] Token.php
[edit]
[-] Event.php
[edit]
[-] SKU.php
[edit]
[-] Recipient.php
[edit]
[-] Invoice.php
[edit]
[-] SubscriptionItem.php
[edit]
[-] SourceTransaction.php
[edit]
[+]
Error
[-] Stripe.php
[edit]
[-] BankAccount.php
[edit]
[-] Coupon.php
[edit]
[-] OAuth.php
[edit]
[-] RecipientTransfer.php
[edit]
[-] AlipayAccount.php
[edit]
[-] ApiResponse.php
[edit]
[-] Dispute.php
[edit]
[-] BitcoinTransaction.php
[edit]
[-] SingletonApiResource.php
[edit]
[-] InvoiceItem.php
[edit]
[-] ApplicationFeeRefund.php
[edit]
[-] FileUpload.php
[edit]
[-] ExchangeRate.php
[edit]
[-] OrderReturn.php
[edit]
[+]
Util
[-] ApplePayDomain.php
[edit]
[-] ApiRequestor.php
[edit]
[-] ApplicationFee.php
[edit]
[-] Plan.php
[edit]
[-] Transfer.php
[edit]
[-] CountrySpec.php
[edit]
[-] Payout.php
[edit]
[-] ExternalAccount.php
[edit]
[-] AttachedObject.php
[edit]
[-] Balance.php
[edit]
[-] Card.php
[edit]
[-] Refund.php
[edit]
[-] StripeObject.php
[edit]
[-] LoginLink.php
[edit]
[-] Account.php
[edit]
[-] EphemeralKey.php
[edit]
[-] ApiResource.php
[edit]
[-] Charge.php
[edit]
[-] TransferReversal.php
[edit]
[-] Customer.php
[edit]
[-] Source.php
[edit]