ApiOperations
6 years ago
Checkout
6 years ago
Error
6 years ago
HttpClient
6 years ago
Issuing
6 years ago
Radar
6 years ago
Reporting
6 years ago
Sigma
6 years ago
Terminal
6 years ago
Util
6 years ago
Account.php
6 years ago
AccountLink.php
6 years ago
AlipayAccount.php
6 years ago
ApiRequestor.php
6 years ago
ApiResource.php
6 years ago
ApiResponse.php
6 years ago
ApplePayDomain.php
6 years ago
ApplicationFee.php
6 years ago
ApplicationFeeRefund.php
6 years ago
Balance.php
6 years ago
BalanceTransaction.php
6 years ago
BankAccount.php
6 years ago
BitcoinReceiver.php
6 years ago
BitcoinTransaction.php
6 years ago
Capability.php
6 years ago
Card.php
6 years ago
Charge.php
6 years ago
Collection.php
6 years ago
CountrySpec.php
6 years ago
Coupon.php
6 years ago
CreditNote.php
6 years ago
Customer.php
6 years ago
CustomerBalanceTransaction.php
6 years ago
Discount.php
6 years ago
Dispute.php
6 years ago
EphemeralKey.php
6 years ago
Event.php
6 years ago
ExchangeRate.php
6 years ago
File.php
6 years ago
FileLink.php
6 years ago
FileUpload.php
6 years ago
Invoice.php
6 years ago
InvoiceItem.php
6 years ago
InvoiceLineItem.php
6 years ago
IssuerFraudRecord.php
6 years ago
LoginLink.php
6 years ago
OAuth.php
6 years ago
Order.php
6 years ago
OrderItem.php
6 years ago
OrderReturn.php
6 years ago
PaymentIntent.php
6 years ago
PaymentMethod.php
6 years ago
Payout.php
6 years ago
Person.php
6 years ago
Plan.php
6 years ago
Product.php
6 years ago
Recipient.php
6 years ago
RecipientTransfer.php
6 years ago
Refund.php
6 years ago
RequestTelemetry.php
6 years ago
Review.php
6 years ago
SKU.php
6 years ago
SetupIntent.php
6 years ago
SingletonApiResource.php
6 years ago
Source.php
6 years ago
SourceTransaction.php
6 years ago
Stripe.php
6 years ago
StripeObject.php
6 years ago
Subscription.php
6 years ago
SubscriptionItem.php
6 years ago
SubscriptionSchedule.php
6 years ago
TaxId.php
6 years ago
TaxRate.php
6 years ago
ThreeDSecure.php
6 years ago
Token.php
6 years ago
Topup.php
6 years ago
Transfer.php
6 years ago
TransferReversal.php
6 years ago
UsageRecord.php
6 years ago
UsageRecordSummary.php
6 years ago
Webhook.php
6 years ago
WebhookEndpoint.php
6 years ago
WebhookSignature.php
6 years ago
SubscriptionSchedule.php
69 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe; |
| 4 | |
| 5 | /** |
| 6 | * Class SubscriptionSchedule |
| 7 | * |
| 8 | * @property string $id |
| 9 | * @property string $object |
| 10 | * @property string $billing |
| 11 | * @property mixed $billing_thresholds |
| 12 | * @property int $canceled_at |
| 13 | * @property int $completed_at |
| 14 | * @property int $created |
| 15 | * @property mixed $current_phase |
| 16 | * @property string $customer |
| 17 | * @property mixed $invoice_settings |
| 18 | * @property boolean $livemode |
| 19 | * @property StripeObject $metadata |
| 20 | * @property mixed $phases |
| 21 | * @property int $released_at |
| 22 | * @property string $released_subscription |
| 23 | * @property string $renewal_behavior |
| 24 | * @property mixed $renewal_interval |
| 25 | * @property string $revision |
| 26 | * @property string $status |
| 27 | * @property string $subscription |
| 28 | * |
| 29 | * @package Stripe |
| 30 | */ |
| 31 | class SubscriptionSchedule extends ApiResource |
| 32 | { |
| 33 | const OBJECT_NAME = "subscription_schedule"; |
| 34 | |
| 35 | use ApiOperations\All; |
| 36 | use ApiOperations\Create; |
| 37 | use ApiOperations\Retrieve; |
| 38 | use ApiOperations\Update; |
| 39 | use ApiOperations\NestedResource; |
| 40 | |
| 41 | /** |
| 42 | * @param array|null $params |
| 43 | * @param array|string|null $opts |
| 44 | * |
| 45 | * @return SubscriptionSchedule The canceled subscription schedule. |
| 46 | */ |
| 47 | public function cancel($params = null, $opts = null) |
| 48 | { |
| 49 | $url = $this->instanceUrl() . '/cancel'; |
| 50 | list($response, $opts) = $this->_request('post', $url, $params, $opts); |
| 51 | $this->refreshFrom($response, $opts); |
| 52 | return $this; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * @param array|null $params |
| 57 | * @param array|string|null $opts |
| 58 | * |
| 59 | * @return SubscriptionSchedule The released subscription schedule. |
| 60 | */ |
| 61 | public function release($params = null, $opts = null) |
| 62 | { |
| 63 | $url = $this->instanceUrl() . '/release'; |
| 64 | list($response, $opts) = $this->_request('post', $url, $params, $opts); |
| 65 | $this->refreshFrom($response, $opts); |
| 66 | return $this; |
| 67 | } |
| 68 | } |
| 69 |