docsDestination = $docsDestination; } /** * @return DocsDestination */ public function getDocsDestination() { return $this->docsDestination; } /** * Output only. Timestamp when the transcript stopped. * * @param string $endTime */ public function setEndTime($endTime) { $this->endTime = $endTime; } /** * @return string */ public function getEndTime() { return $this->endTime; } /** * Output only. Resource name of the transcript. Format: * `conferenceRecords/{conference_record}/transcripts/{transcript}`, where * `{transcript}` is a 1:1 mapping to each unique transcription session of the * conference. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. Timestamp when the transcript started. * * @param string $startTime */ public function setStartTime($startTime) { $this->startTime = $startTime; } /** * @return string */ public function getStartTime() { return $this->startTime; } /** * Output only. Current state. * * Accepted values: STATE_UNSPECIFIED, STARTED, ENDED, FILE_GENERATED * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Transcript::class, 'Google_Service_Meet_Transcript');