4
0

TaxCode.php 663 B

12345678910111213141516171819202122
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * <a href="https://stripe.com/docs/tax/tax-codes">Tax codes</a> classify goods and
  6. * services for tax purposes.
  7. *
  8. * @property string $id Unique identifier for the object.
  9. * @property string $object String representing the object's type. Objects of the same type share the same value.
  10. * @property string $description A detailed description of which types of products the tax code represents.
  11. * @property string $name A short name for the tax code.
  12. */
  13. class TaxCode extends ApiResource
  14. {
  15. const OBJECT_NAME = 'tax_code';
  16. use ApiOperations\All;
  17. use ApiOperations\Retrieve;
  18. }