composer package updates
[openemr.git] / vendor / stripe / stripe-php / lib / Product.php
blob1087349b40af61c2efc133931df11d09a2c483b3
1 <?php
3 namespace Stripe;
5 /**
6 * Class Product
8 * @property string $id
9 * @property string $object
10 * @property bool $active
11 * @property string[] $attributes
12 * @property string $caption
13 * @property int $created
14 * @property string[] $deactivate_on
15 * @property string $description
16 * @property array $images
17 * @property bool $livemode
18 * @property StripeObject $metadata
19 * @property string $name
20 * @property mixed $package_dimensions
21 * @property bool $shippable
22 * @property string $statement_descriptor
23 * @property string $type
24 * @property string $unit_label
25 * @property int $updated
26 * @property string $url
28 * @package Stripe
30 class Product extends ApiResource
33 const OBJECT_NAME = "product";
35 use ApiOperations\All;
36 use ApiOperations\Create;
37 use ApiOperations\Delete;
38 use ApiOperations\Retrieve;
39 use ApiOperations\Update;