SevenShores\Hubspot\Tests\Integration\Resources\TimelineTest::deleteEventType PHP Method

deleteEventType() public method

public deleteEventType ( )
    public function deleteEventType()
    {
        $response = $this->timeline->deleteEventType(self::APP_ID, $this->eventTypeId);
        $this->assertEquals(204, $response->getStatusCode());
        // Remove event type id from class since we just deleted it.
        $this->eventTypeId = null;
        return $response;
    }