CountrySpec.php 508 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class CountrySpec
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property string $default_currency
  9. * @property mixed $supported_bank_account_currencies
  10. * @property string[] $supported_payment_currencies
  11. * @property string[] $supported_payment_methods
  12. * @property mixed $verification_fields
  13. *
  14. * @package Stripe
  15. */
  16. class CountrySpec extends ApiResource
  17. {
  18. const OBJECT_NAME = "country_spec";
  19. use ApiOperations\All;
  20. use ApiOperations\Retrieve;
  21. }