2017-04-18 05:44:08 +02:00
|
|
|
<?php
|
|
|
|
|
|
2021-01-03 23:37:44 +01:00
|
|
|
// File generated from our OpenAPI spec
|
|
|
|
|
|
2017-04-18 05:44:08 +02:00
|
|
|
namespace Stripe;
|
|
|
|
|
|
|
|
|
|
/**
|
2021-01-03 23:37:44 +01:00
|
|
|
* Stripe needs to collect certain pieces of information about each account
|
|
|
|
|
* created. These requirements can differ depending on the account's country. The
|
|
|
|
|
* Country Specs API makes these rules available to your integration.
|
2017-04-18 05:44:08 +02:00
|
|
|
*
|
2021-01-03 23:37:44 +01:00
|
|
|
* You can also view the information from this API call as <a
|
|
|
|
|
* href="/docs/connect/required-verification-information">an online guide</a>.
|
2018-03-06 13:52:56 +01:00
|
|
|
*
|
2021-01-03 23:37:44 +01:00
|
|
|
* @property string $id Unique identifier for the object. Represented as the ISO country code for this country.
|
|
|
|
|
* @property string $object String representing the object's type. Objects of the same type share the same value.
|
|
|
|
|
* @property string $default_currency The default currency for this country. This applies to both payment methods and bank accounts.
|
|
|
|
|
* @property \Stripe\StripeObject $supported_bank_account_currencies Currencies that can be accepted in the specific country (for transfers).
|
|
|
|
|
* @property string[] $supported_payment_currencies Currencies that can be accepted in the specified country (for payments).
|
|
|
|
|
* @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>.
|
|
|
|
|
* @property string[] $supported_transfer_countries Countries that can accept transfers from the specified country.
|
|
|
|
|
* @property \Stripe\StripeObject $verification_fields
|
2017-04-18 05:44:08 +02:00
|
|
|
*/
|
|
|
|
|
class CountrySpec extends ApiResource
|
|
|
|
|
{
|
2021-01-03 23:37:44 +01:00
|
|
|
const OBJECT_NAME = 'country_spec';
|
2019-05-03 02:22:27 +02:00
|
|
|
|
2018-03-06 13:52:56 +01:00
|
|
|
use ApiOperations\All;
|
|
|
|
|
use ApiOperations\Retrieve;
|
2017-04-18 05:44:08 +02:00
|
|
|
}
|