MC4WP_API_v3::delete_ecommerce_store_customer PHP Метод

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

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