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/customeraddress
*/
class CustomerAddress extends AbstractNestedCrudResource
{
* @var string
protected $resourceParentEndpointPleural = 'customers';
protected $resourceChildEndpointPleural = 'addresses';
protected $resourceChildKeySingular = 'customer_address';
protected $resourceChildKeyPleural = 'addresses';
}