composer package updates
[openemr.git] / vendor / stripe / stripe-php / lib / CountrySpec.php
blob53191607c17e7bc0173f820d5eb2aa41fe971251
1 <?php
3 namespace Stripe;
5 /**
6 * Class CountrySpec
8 * @property string $id
9 * @property string $object
10 * @property string $default_currency
11 * @property mixed $supported_bank_account_currencies
12 * @property string[] $supported_payment_currencies
13 * @property string[] $supported_payment_methods
14 * @property mixed $verification_fields
16 * @package Stripe
18 class CountrySpec extends ApiResource
21 const OBJECT_NAME = "country_spec";
23 use ApiOperations\All;
24 use ApiOperations\Retrieve;
26 /**
27 * This is a special case because the country specs endpoint has an
28 * underscore in it. The parent `className` function strips underscores.
30 * @return string The name of the class.
32 public static function className()
34 return 'country_spec';