dolibarr/htdocs/includes/stripe/lib/SKU.php

33 lines
659 B
PHP
Raw Normal View History

2017-04-18 05:44:08 +02:00
<?php
namespace Stripe;
/**
* Class SKU
*
2018-03-06 13:52:56 +01:00
* @property string $id
* @property string $object
* @property bool $active
* @property mixed $attributes
* @property int $created
* @property string $currency
* @property string $image
* @property mixed $inventory
* @property bool $livemode
* @property StripeObject $metadata
* @property mixed $package_dimensions
* @property int $price
* @property string $product
* @property int $updated
*
2017-04-18 05:44:08 +02:00
* @package Stripe
*/
class SKU extends ApiResource
{
2018-03-06 13:52:56 +01:00
use ApiOperations\All;
use ApiOperations\Create;
use ApiOperations\Delete;
use ApiOperations\Retrieve;
use ApiOperations\Update;
2017-04-18 05:44:08 +02:00
}