public function testFindMultiple($ticket)
{
$ticket2 = $this->createTestTicket();
$response = $this->client->tickets()->findMany([$ticket->id, $ticket2->id]);
$this->assertTrue(property_exists($response, 'tickets'));
$this->assertEquals(2, count($response->tickets));
$this->assertEquals(2, $response->count);
}