for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ShopifyClient\Resource;
/**
* https://help.shopify.com/api/reference/product
*/
class Product extends AbstractCrudResource
{
* @var string
protected $resourceKeySingular = 'product';
protected $resourceKeyPleural = 'products';
* @var bool
protected $countable = true;
* @var ProductVariant
public $variants;
* @var ProductImage
public $images;
}