mirror of
https://github.com/itflow-org/itflow
synced 2026-03-09 07:14:51 +00:00
Updated Client Detail Header for better mobile fit, lots of progress on stripe pay and some other minor updates
This commit is contained in:
72
vendor/stripe-php-7.0.2/lib/SubscriptionSchedule.php
vendored
Normal file
72
vendor/stripe-php-7.0.2/lib/SubscriptionSchedule.php
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
namespace Stripe;
|
||||
|
||||
/**
|
||||
* Class SubscriptionSchedule
|
||||
*
|
||||
* @property string $id
|
||||
* @property string $object
|
||||
* @property string $billing
|
||||
* @property mixed $billing_thresholds
|
||||
* @property int $canceled_at
|
||||
* @property int $completed_at
|
||||
* @property int $created
|
||||
* @property mixed $current_phase
|
||||
* @property string $customer
|
||||
* @property mixed $invoice_settings
|
||||
* @property boolean $livemode
|
||||
* @property StripeObject $metadata
|
||||
* @property mixed $phases
|
||||
* @property int $released_at
|
||||
* @property string $released_subscription
|
||||
* @property string $renewal_behavior
|
||||
* @property mixed $renewal_interval
|
||||
* @property string $revision
|
||||
* @property string $status
|
||||
* @property string $subscription
|
||||
*
|
||||
* @package Stripe
|
||||
*/
|
||||
class SubscriptionSchedule extends ApiResource
|
||||
{
|
||||
const OBJECT_NAME = "subscription_schedule";
|
||||
|
||||
use ApiOperations\All;
|
||||
use ApiOperations\Create;
|
||||
use ApiOperations\Retrieve;
|
||||
use ApiOperations\Update;
|
||||
use ApiOperations\NestedResource;
|
||||
|
||||
/**
|
||||
* @param array|null $params
|
||||
* @param array|string|null $opts
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*
|
||||
* @return SubscriptionSchedule The canceled subscription schedule.
|
||||
*/
|
||||
public function cancel($params = null, $opts = null)
|
||||
{
|
||||
$url = $this->instanceUrl() . '/cancel';
|
||||
list($response, $opts) = $this->_request('post', $url, $params, $opts);
|
||||
$this->refreshFrom($response, $opts);
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|null $params
|
||||
* @param array|string|null $opts
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*
|
||||
* @return SubscriptionSchedule The released subscription schedule.
|
||||
*/
|
||||
public function release($params = null, $opts = null)
|
||||
{
|
||||
$url = $this->instanceUrl() . '/release';
|
||||
list($response, $opts) = $this->_request('post', $url, $params, $opts);
|
||||
$this->refreshFrom($response, $opts);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user