2017-04-18 05:44:08 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Stripe;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class CountrySpec
|
|
|
|
|
*
|
2018-03-06 13:52:56 +01:00
|
|
|
* @property string $id
|
|
|
|
|
* @property string $object
|
|
|
|
|
* @property string $default_currency
|
|
|
|
|
* @property mixed $supported_bank_account_currencies
|
|
|
|
|
* @property string[] $supported_payment_currencies
|
|
|
|
|
* @property string[] $supported_payment_methods
|
2019-05-03 02:22:27 +02:00
|
|
|
* @property string[] $supported_transfer_countries
|
2018-03-06 13:52:56 +01:00
|
|
|
* @property mixed $verification_fields
|
|
|
|
|
*
|
2017-04-18 05:44:08 +02:00
|
|
|
* @package Stripe
|
|
|
|
|
*/
|
|
|
|
|
class CountrySpec extends ApiResource
|
|
|
|
|
{
|
2019-05-03 02:22:27 +02:00
|
|
|
const OBJECT_NAME = "country_spec";
|
|
|
|
|
|
2018-03-06 13:52:56 +01:00
|
|
|
use ApiOperations\All;
|
|
|
|
|
use ApiOperations\Retrieve;
|
2017-04-18 05:44:08 +02:00
|
|
|
}
|