JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr */ public function all($params = null, $opts = null) { return $this->requestCollection('get', '/v1/climate/orders', $params, $opts); } /** * Cancels a Climate order. You can cancel an order within 24 hours of creation. * Stripe refunds the reservation amount_subtotal, but not the * amount_fees for user-triggered cancellations. Frontier might cancel * reservations if suppliers fail to deliver. If Frontier cancels the reservation, * Stripe provides 90 days advance notice and refunds the * amount_total. * * @param string $id * @param null|array $params * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Climate\Order */ public function cancel($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/climate/orders/%s/cancel', $id), $params, $opts); } /** * Creates a Climate order object for a given Climate product. The order will be * processed immediately after creation and payment will be deducted your Stripe * balance. * * @param null|array $params * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Climate\Order */ public function create($params = null, $opts = null) { return $this->request('post', '/v1/climate/orders', $params, $opts); } /** * Retrieves the details of a Climate order object with the given ID. * * @param string $id * @param null|array $params * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Climate\Order */ public function retrieve($id, $params = null, $opts = null) { return $this->request('get', $this->buildPath('/v1/climate/orders/%s', $id), $params, $opts); } /** * Updates the specified order by setting the values of the parameters passed. * * @param string $id * @param null|array $params * @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts * * @throws \Stripe\Exception\ApiErrorException if the request fails * * @return \Stripe\Climate\Order */ public function update($id, $params = null, $opts = null) { return $this->request('post', $this->buildPath('/v1/climate/orders/%s', $id), $params, $opts); } }