public function testDisableWebhookReturnsCorrectData()
 {
     $webhook = new Webhook();
     $webhook->setId('00000000-0000-0000-0000-000000000000');
     $this->setMockResponse($this->client, array('webhooks/disableWebhook'));
     $result = $this->client->disableWebhook($webhook);
     $this->assertInternalType('boolean', $result);
     $this->assertEquals(true, $result);
 }