TaxId.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * You can add one or multiple tax IDs to a <a
  6. * href="https://stripe.com/docs/api/customers">customer</a>. A customer's tax IDs
  7. * are displayed on invoices and credit notes issued for the customer.
  8. *
  9. * Related guide: <a href="https://stripe.com/docs/billing/taxes/tax-ids">Customer
  10. * Tax Identification Numbers</a>.
  11. *
  12. * @property string $id Unique identifier for the object.
  13. * @property string $object String representing the object's type. Objects of the same type share the same value.
  14. * @property null|string $country Two-letter ISO code representing the country of the tax ID.
  15. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
  16. * @property null|string|\Stripe\Customer $customer ID of the customer.
  17. * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
  18. * @property string $type Type of the tax ID, one of <code>ae_trn</code>, <code>au_abn</code>, <code>br_cnpj</code>, <code>br_cpf</code>, <code>ca_bn</code>, <code>ca_qst</code>, <code>ch_vat</code>, <code>cl_tin</code>, <code>es_cif</code>, <code>eu_vat</code>, <code>hk_br</code>, <code>id_npwp</code>, <code>in_gst</code>, <code>jp_cn</code>, <code>jp_rn</code>, <code>kr_brn</code>, <code>li_uid</code>, <code>mx_rfc</code>, <code>my_frp</code>, <code>my_itn</code>, <code>my_sst</code>, <code>no_vat</code>, <code>nz_gst</code>, <code>ru_inn</code>, <code>ru_kpp</code>, <code>sa_vat</code>, <code>sg_gst</code>, <code>sg_uen</code>, <code>th_vat</code>, <code>tw_vat</code>, <code>us_ein</code>, or <code>za_vat</code>. Note that some legacy tax IDs have type <code>unknown</code>
  19. * @property string $value Value of the tax ID.
  20. * @property null|\Stripe\StripeObject $verification Tax ID verification information.
  21. */
  22. class TaxId extends ApiResource
  23. {
  24. const OBJECT_NAME = 'tax_id';
  25. use ApiOperations\Delete;
  26. const TYPE_AE_TRN = 'ae_trn';
  27. const TYPE_AU_ABN = 'au_abn';
  28. const TYPE_BR_CNPJ = 'br_cnpj';
  29. const TYPE_BR_CPF = 'br_cpf';
  30. const TYPE_CA_BN = 'ca_bn';
  31. const TYPE_CA_QST = 'ca_qst';
  32. const TYPE_CH_VAT = 'ch_vat';
  33. const TYPE_CL_TIN = 'cl_tin';
  34. const TYPE_ES_CIF = 'es_cif';
  35. const TYPE_EU_VAT = 'eu_vat';
  36. const TYPE_HK_BR = 'hk_br';
  37. const TYPE_ID_NPWP = 'id_npwp';
  38. const TYPE_IN_GST = 'in_gst';
  39. const TYPE_JP_CN = 'jp_cn';
  40. const TYPE_JP_RN = 'jp_rn';
  41. const TYPE_KR_BRN = 'kr_brn';
  42. const TYPE_LI_UID = 'li_uid';
  43. const TYPE_MX_RFC = 'mx_rfc';
  44. const TYPE_MY_FRP = 'my_frp';
  45. const TYPE_MY_ITN = 'my_itn';
  46. const TYPE_MY_SST = 'my_sst';
  47. const TYPE_NO_VAT = 'no_vat';
  48. const TYPE_NZ_GST = 'nz_gst';
  49. const TYPE_RU_INN = 'ru_inn';
  50. const TYPE_RU_KPP = 'ru_kpp';
  51. const TYPE_SA_VAT = 'sa_vat';
  52. const TYPE_SG_GST = 'sg_gst';
  53. const TYPE_SG_UEN = 'sg_uen';
  54. const TYPE_TH_VAT = 'th_vat';
  55. const TYPE_TW_VAT = 'tw_vat';
  56. const TYPE_UNKNOWN = 'unknown';
  57. const TYPE_US_EIN = 'us_ein';
  58. const TYPE_ZA_VAT = 'za_vat';
  59. const VERIFICATION_STATUS_PENDING = 'pending';
  60. const VERIFICATION_STATUS_UNAVAILABLE = 'unavailable';
  61. const VERIFICATION_STATUS_UNVERIFIED = 'unverified';
  62. const VERIFICATION_STATUS_VERIFIED = 'verified';
  63. /**
  64. * @return string the API URL for this tax id
  65. */
  66. public function instanceUrl()
  67. {
  68. $id = $this['id'];
  69. $customer = $this['customer'];
  70. if (!$id) {
  71. throw new Exception\UnexpectedValueException(
  72. "Could not determine which URL to request: class instance has invalid ID: {$id}"
  73. );
  74. }
  75. $id = Util\Util::utf8($id);
  76. $customer = Util\Util::utf8($customer);
  77. $base = Customer::classUrl();
  78. $customerExtn = \urlencode($customer);
  79. $extn = \urlencode($id);
  80. return "{$base}/{$customerExtn}/tax_ids/{$extn}";
  81. }
  82. /**
  83. * @param array|string $_id
  84. * @param null|array|string $_opts
  85. *
  86. * @throws \Stripe\Exception\BadMethodCallException
  87. */
  88. public static function retrieve($_id, $_opts = null)
  89. {
  90. $msg = 'Tax IDs cannot be retrieved without a customer ID. Retrieve ' .
  91. "a tax ID using `Customer::retrieveTaxId('customer_id', " .
  92. "'tax_id_id')`.";
  93. throw new Exception\BadMethodCallException($msg);
  94. }
  95. }