MC4WP_API_v3::update_ecommerce_store_customer PHP Метод

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

public update_ecommerce_store_customer ( string $store_id, string $customer_id, array $args ) : object
$store_id string
$customer_id string
$args array
Результат object
    public function update_ecommerce_store_customer($store_id, $customer_id, array $args)
    {
        $resource = sprintf('/ecommerce/stores/%s/customers/%s', $store_id, $customer_id);
        return $this->client->patch($resource, $args);
    }