'audio', 'payload' => ['url' => 'u', 'token' => 't'], 'transcription' => 'Hello world.']; $attachment = AudioAttachment::fromArray($data); $this->assertInstanceOf(AudioAttachment::class, $attachment); $this->assertSame('Hello world.', $attachment->transcription); } }