mediaId = $mediaId; $this->title = $title; $this->description = $description; } /** * @return array */ public function formatForReply(): array { return [ 'MsgType' => 'video', 'Video' => [ 'MediaId' => $this->mediaId, 'Title' => $this->title, 'Description' => $this->description ] ]; } /** * @return array */ public function formatForResponse(): array { return [ 'msgtype' => 'video', 'video' => [ 'media_id' => $this->mediaId, 'title' => $this->title, 'description' => $this->description ] ]; } }