MC4WP_API_v3::get_ecommerce_store_order_line PHP Method

get_ecommerce_store_order_line() public method

public get_ecommerce_store_order_line ( string $store_id, string $order_id, string $line_id, array $args = [] ) : object
$store_id string
$order_id string
$line_id string
$args array
return object
    public function get_ecommerce_store_order_line($store_id, $order_id, $line_id, array $args = array())
    {
        $resource = sprintf('/ecommerce/stores/%s/orders/%s/lines/%s', $store_id, $order_id, $line_id);
        return $this->client->get($resource, $args);
    }