SKU.php 692 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class SKU
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property bool $active
  9. * @property mixed $attributes
  10. * @property int $created
  11. * @property string $currency
  12. * @property string $image
  13. * @property mixed $inventory
  14. * @property bool $livemode
  15. * @property StripeObject $metadata
  16. * @property mixed $package_dimensions
  17. * @property int $price
  18. * @property string $product
  19. * @property int $updated
  20. *
  21. * @package Stripe
  22. */
  23. class SKU extends ApiResource
  24. {
  25. const OBJECT_NAME = "sku";
  26. use ApiOperations\All;
  27. use ApiOperations\Create;
  28. use ApiOperations\Delete;
  29. use ApiOperations\Retrieve;
  30. use ApiOperations\Update;
  31. }