MC4WP_API_v3::get_ecommerce_store_product_variant PHP Method

get_ecommerce_store_product_variant() public method

public get_ecommerce_store_product_variant ( string $store_id, string $product_id, string $variant_id, array $args = [] ) : object
$store_id string
$product_id string
$variant_id string
$args array
return object
    public function get_ecommerce_store_product_variant($store_id, $product_id, $variant_id, array $args = array())
    {
        $resource = sprintf('/ecommerce/stores/%s/products/%s/variants/%s', $store_id, $product_id, $variant_id);
        return $this->client->get($resource, $args);
    }