File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/stripe/stripe-php/lib/Service/OrderService.php
Back
<?php // File generated from our OpenAPI spec namespace AmeliaStripe\Service; class OrderService extends \AmeliaStripe\Service\AbstractService { /** * Returns a list of your orders. The orders are returned sorted by creation date, * with the most recently created orders appearing first. * * @param null|array $params * @param null|array|\AmeliaStripe\Util\RequestOptions $opts * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails * * @return \AmeliaStripe\Collection<\AmeliaStripe\Order> */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/orders', $params, $opts); } /** * When retrieving an order, there is an includable <strong>line_items</strong> * property containing the first handful of those items. There is also a URL where * you can retrieve the full (paginated) list of line items. * * @param string $id * @param null|array $params * @param null|array|\AmeliaStripe\Util\RequestOptions $opts * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails * * @return \AmeliaStripe\Collection<\AmeliaStripe\LineItem> */ public function allLineItems($id, $params = null, $opts = null) { return $this->requestCollection('get', $this->buildPath('/v1/orders/%s/line_items', $id), $params, $opts); } /** * Cancels the order as well as the payment intent if one is attached. * * @param string $id * @param null|array $params * @param null|array|\AmeliaStripe\Util\RequestOptions $opts * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails * * @return \AmeliaStripe\Order */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/orders/%s/cancel', $id), $params, $opts); } /** * Creates a new <code>open</code> order object. * * @param null|array $params * @param null|array|\AmeliaStripe\Util\RequestOptions $opts * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails * * @return \AmeliaStripe\Order */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/orders', $params, $opts); } /** * Reopens a <code>submitted</code> order. * * @param string $id * @param null|array $params * @param null|array|\AmeliaStripe\Util\RequestOptions $opts * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails * * @return \AmeliaStripe\Order */ public function reopen($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/orders/%s/reopen', $id), $params, $opts); } /** * Retrieves the details of an existing order. Supply the unique order ID from * either an order creation request or the order list, and Stripe will return the * corresponding order information. * * @param string $id * @param null|array $params * @param null|array|\AmeliaStripe\Util\RequestOptions $opts * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails * * @return \AmeliaStripe\Order */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/orders/%s', $id), $params, $opts); } /** * Submitting an Order transitions the status to <code>processing</code> and * creates a PaymentIntent object so the order can be paid. If the Order has an * <code>amount_total</code> of 0, no PaymentIntent object will be created. Once * the order is submitted, its contents cannot be changed, unless the <a * href="#reopen_order">reopen</a> method is called. * * @param string $id * @param null|array $params * @param null|array|\AmeliaStripe\Util\RequestOptions $opts * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails * * @return \AmeliaStripe\Order */ public function submit($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/orders/%s/submit', $id), $params, $opts); } /** * Updates the specific order by setting the values of the parameters passed. Any * parameters not provided will be left unchanged. * * @param string $id * @param null|array $params * @param null|array|\AmeliaStripe\Util\RequestOptions $opts * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails * * @return \AmeliaStripe\Order */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/orders/%s', $id), $params, $opts); } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings