PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.15.5
GiveWP – Donation Plugin and Fundraising Platform v4.15.5
4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 All 255 releases
give / vendor / stripe / stripe-php / lib / CountrySpec.php

CountrySpec.php in GiveWP – Donation Plugin and Fundraising Platform 4.15.5, at vendor/stripe/stripe-php/lib/CountrySpec.php

31 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // File generated from our OpenAPI spec
4
5 namespace Stripe;
6
7 /**
8 * Stripe needs to collect certain pieces of information about each account
9 * created. These requirements can differ depending on the account's country. The
10 * Country Specs API makes these rules available to your integration.
11 *
12 * You can also view the information from this API call as <a
13 * href="/docs/connect/required-verification-information">an online guide</a>.
14 *
15 * @property string $id Unique identifier for the object. Represented as the ISO country code for this country.
16 * @property string $object String representing the object's type. Objects of the same type share the same value.
17 * @property string $default_currency The default currency for this country. This applies to both payment methods and bank accounts.
18 * @property \Stripe\StripeObject $supported_bank_account_currencies Currencies that can be accepted in the specific country (for transfers).
19 * @property string[] $supported_payment_currencies Currencies that can be accepted in the specified country (for payments).
20 * @property string[] $supported_payment_methods Payment methods available in the specified country. You may need to enable some payment methods (e.g., <a href="https://stripe.com/docs/ach">ACH</a>) on your account before they appear in this list. The <code>stripe</code> payment method refers to <a href="https://stripe.com/docs/connect/destination-charges">charging through your platform</a>.
21 * @property string[] $supported_transfer_countries Countries that can accept transfers from the specified country.
22 * @property \Stripe\StripeObject $verification_fields
23 */
24 class CountrySpec extends ApiResource
25 {
26 const OBJECT_NAME = 'country_spec';
27
28 use ApiOperations\All;
29 use ApiOperations\Retrieve;
30 }
31