Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/public_html/test.tradze.com/Backup25feb2025/vendor/stripe-php/lib/ |
<?php
namespace Stripe;
/**
* Class Product
*
* @property string $id
* @property string $object
* @property bool $active
* @property string[] $attributes
* @property string $caption
* @property int $created
* @property string[] $deactivate_on
* @property string $description
* @property array $images
* @property bool $livemode
* @property AttachedObject $metadata
* @property string $name
* @property mixed $package_dimensions
* @property bool $shippable
* @property Collection $skus
* @property string $statement_descriptor
* @property string $type
* @property int $updated
* @property string $url
*
* @package Stripe
*/
class Product extends ApiResource
{
/**
* @param array|string $id The ID of the product to retrieve, or an options
* array contianing an `id` key.
* @param array|string|null $opts
*
* @return Product
*/
public static function retrieve($id, $opts = null)
{
return self::_retrieve($id, $opts);
}
/**
* @param array|null $params
* @param array|string|null $opts
*
* @return Product The created Product.
*/
public static function create($params = null, $opts = null)
{
return self::_create($params, $opts);
}
/**
* @param string $id The ID of the product to update.
* @param array|null $params
* @param array|string|null $options
*
* @return Product The updated product.
*/
public static function update($id, $params = null, $options = null)
{
return self::_update($id, $params, $options);
}
/**
* @param array|string|null $opts
*
* @return Product The saved Product.
*/
public function save($opts = null)
{
return $this->_save($opts);
}
/**
* @param array|null $params
* @param array|string|null $opts
*
* @return Collection of Products
*/
public static function all($params = null, $opts = null)
{
return self::_all($params, $opts);
}
/**
* @param array|null $params
* @param array|string|null $opts
*
* @return Product The deleted product.
*/
public function delete($params = null, $opts = null)
{
return $this->_delete($params, $opts);
}
}