Product.php 873 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class Product
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property bool $active
  9. * @property string[] $attributes
  10. * @property string $caption
  11. * @property int $created
  12. * @property string[] $deactivate_on
  13. * @property string $description
  14. * @property array $images
  15. * @property bool $livemode
  16. * @property StripeObject $metadata
  17. * @property string $name
  18. * @property mixed $package_dimensions
  19. * @property bool $shippable
  20. * @property string $statement_descriptor
  21. * @property string $type
  22. * @property string $unit_label
  23. * @property int $updated
  24. * @property string $url
  25. *
  26. * @package Stripe
  27. */
  28. class Product extends ApiResource
  29. {
  30. const OBJECT_NAME = "product";
  31. use ApiOperations\All;
  32. use ApiOperations\Create;
  33. use ApiOperations\Delete;
  34. use ApiOperations\Retrieve;
  35. use ApiOperations\Update;
  36. }