FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
stripe
/
stripe-php
/
lib
/
Forwarding
Edit File: Request.php
<?php // File generated from our OpenAPI spec namespace AmeliaStripe\Forwarding; /** * Instructs Stripe to make a request on your behalf using the destination URL. The destination URL * is activated by Stripe at the time of onboarding. Stripe verifies requests with your credentials * provided during onboarding, and injects card details from the payment_method into the request. * * Stripe redacts all sensitive fields and headers, including authentication credentials and card numbers, * before storing the request and response data in the forwarding Request object, which are subject to a * 30-day retention period. * * You can provide a Stripe idempotency key to make sure that requests with the same key result in only one * outbound request. The Stripe idempotency key provided should be unique and different from any idempotency * keys provided on the underlying third-party request. * * Forwarding Requests are synchronous requests that return a response or time out according to * Stripe’s limits. * * Related guide: <a href="https://docs.stripe.com/payments/forwarding">Forward card details to third-party API endpoints</a>. * * @property string $id Unique identifier for the object. * @property string $object String representing the object's type. Objects of the same type share the same value. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode. * @property null|\AmeliaStripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format. * @property string $payment_method The PaymentMethod to insert into the forwarded request. Forwarding previously consumed PaymentMethods is allowed. * @property string[] $replacements The field kinds to be replaced in the forwarded request. * @property null|(object{destination_duration: int, destination_ip_address: string}&\AmeliaStripe\StripeObject) $request_context Context about the request from Stripe's servers to the destination endpoint. * @property null|(object{body: string, headers: (object{name: string, value: string}&\AmeliaStripe\StripeObject)[], http_method: string}&\AmeliaStripe\StripeObject) $request_details The request that was sent to the destination endpoint. We redact any sensitive fields. * @property null|(object{body: string, headers: (object{name: string, value: string}&\AmeliaStripe\StripeObject)[], status: int}&\AmeliaStripe\StripeObject) $response_details The response that the destination endpoint returned to us. We redact any sensitive fields. * @property null|string $url The destination URL for the forwarded request. Must be supported by the config. */ class Request extends \AmeliaStripe\ApiResource { const OBJECT_NAME = 'forwarding.request'; /** * Creates a ForwardingRequest object. * * @param null|array{expand?: string[], metadata?: array<string, string>, payment_method: string, replacements: string[], request: array{body?: string, headers?: array{name: string, value: string}[]}, url: string} $params * @param null|array|string $options * * @return Request the created resource * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails */ public static function create($params = null, $options = null) { self::_validateParams($params); $url = static::classUrl(); list($response, $opts) = static::_staticRequest('post', $url, $params, $options); $obj = \AmeliaStripe\Util\Util::convertToStripeObject($response->json, $opts); $obj->setLastResponse($response); return $obj; } /** * Lists all ForwardingRequest objects. * * @param null|array{created?: array{gt?: int, gte?: int, lt?: int, lte?: int}, ending_before?: string, expand?: string[], limit?: int, starting_after?: string} $params * @param null|array|string $opts * * @return \AmeliaStripe\Collection<Request> of ApiResources * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails */ public static function all($params = null, $opts = null) { $url = static::classUrl(); return static::_requestPage($url, \AmeliaStripe\Collection::class, $params, $opts); } /** * Retrieves a ForwardingRequest object. * * @param array|string $id the ID of the API resource to retrieve, or an options array containing an `id` key * @param null|array|string $opts * * @return Request * * @throws \AmeliaStripe\Exception\ApiErrorException if the request fails */ public static function retrieve($id, $opts = null) { $opts = \AmeliaStripe\Util\RequestOptions::parse($opts); $instance = new static($id, $opts); $instance->refresh(); return $instance; } }
Save
Back