MC4WP_API_v3::update_ecommerce_store_order_line PHP Метод

update_ecommerce_store_order_line() публичный Метод

public update_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
Результат object
    public function update_ecommerce_store_order_line($store_id, $order_id, $line_id, array $args)
    {
        $resource = sprintf('/ecommerce/stores/%s/orders/%s/lines/%s', $store_id, $order_id, $line_id);
        return $this->client->patch($resource, $args);
    }