# give/4.15.2/vendor/stripe/stripe-php/lib/StripeClientInterface.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.15.2. 22 lines.

- Page: https://pluginprobe.com/plugins/give/4.15.2/code/vendor/stripe/stripe-php/lib/StripeClientInterface.php
- Raw: https://pluginprobe.com/plugins/give/4.15.2/raw/vendor/stripe/stripe-php/lib/StripeClientInterface.php
- Modified: 2021-09-27T12:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.15.2/code/vendor/stripe/stripe-php/lib/StripeClientInterface.php#L10-L20`.

```php
<?php

namespace Stripe;

/**
 * Interface for a Stripe client.
 */
interface StripeClientInterface extends BaseStripeClientInterface
{
    /**
     * Sends a request to Stripe's API.
     *
     * @param string $method the HTTP method
     * @param string $path the path of the request
     * @param array $params the parameters of the request
     * @param array|\Stripe\Util\RequestOptions $opts the special modifiers of the request
     *
     * @return \Stripe\StripeObject the object returned by Stripe's API
     */
    public function request($method, $path, $params, $opts);
}

```
