Initial commit

This commit is contained in:
Local Administrator
2025-04-18 10:32:42 +02:00
commit b83134aca3
29643 changed files with 3045897 additions and 0 deletions
@@ -0,0 +1,44 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class ActiveConference extends \Google\Model
{
/**
* @var string
*/
public $conferenceRecord;
/**
* @param string
*/
public function setConferenceRecord($conferenceRecord)
{
$this->conferenceRecord = $conferenceRecord;
}
/**
* @return string
*/
public function getConferenceRecord()
{
return $this->conferenceRecord;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ActiveConference::class, 'Google_Service_Meet_ActiveConference');
@@ -0,0 +1,44 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class AnonymousUser extends \Google\Model
{
/**
* @var string
*/
public $displayName;
/**
* @param string
*/
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
/**
* @return string
*/
public function getDisplayName()
{
return $this->displayName;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(AnonymousUser::class, 'Google_Service_Meet_AnonymousUser');
@@ -0,0 +1,116 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class ConferenceRecord extends \Google\Model
{
/**
* @var string
*/
public $endTime;
/**
* @var string
*/
public $expireTime;
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $space;
/**
* @var string
*/
public $startTime;
/**
* @param string
*/
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
/**
* @return string
*/
public function getEndTime()
{
return $this->endTime;
}
/**
* @param string
*/
public function setExpireTime($expireTime)
{
$this->expireTime = $expireTime;
}
/**
* @return string
*/
public function getExpireTime()
{
return $this->expireTime;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setSpace($space)
{
$this->space = $space;
}
/**
* @return string
*/
public function getSpace()
{
return $this->space;
}
/**
* @param string
*/
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
/**
* @return string
*/
public function getStartTime()
{
return $this->startTime;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ConferenceRecord::class, 'Google_Service_Meet_ConferenceRecord');
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class DocsDestination extends \Google\Model
{
/**
* @var string
*/
public $document;
/**
* @var string
*/
public $exportUri;
/**
* @param string
*/
public function setDocument($document)
{
$this->document = $document;
}
/**
* @return string
*/
public function getDocument()
{
return $this->document;
}
/**
* @param string
*/
public function setExportUri($exportUri)
{
$this->exportUri = $exportUri;
}
/**
* @return string
*/
public function getExportUri()
{
return $this->exportUri;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(DocsDestination::class, 'Google_Service_Meet_DocsDestination');
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class DriveDestination extends \Google\Model
{
/**
* @var string
*/
public $exportUri;
/**
* @var string
*/
public $file;
/**
* @param string
*/
public function setExportUri($exportUri)
{
$this->exportUri = $exportUri;
}
/**
* @return string
*/
public function getExportUri()
{
return $this->exportUri;
}
/**
* @param string
*/
public function setFile($file)
{
$this->file = $file;
}
/**
* @return string
*/
public function getFile()
{
return $this->file;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(DriveDestination::class, 'Google_Service_Meet_DriveDestination');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class EndActiveConferenceRequest extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(EndActiveConferenceRequest::class, 'Google_Service_Meet_EndActiveConferenceRequest');
@@ -0,0 +1,61 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class ListConferenceRecordsResponse extends \Google\Collection
{
protected $collection_key = 'conferenceRecords';
protected $conferenceRecordsType = ConferenceRecord::class;
protected $conferenceRecordsDataType = 'array';
/**
* @var string
*/
public $nextPageToken;
/**
* @param ConferenceRecord[]
*/
public function setConferenceRecords($conferenceRecords)
{
$this->conferenceRecords = $conferenceRecords;
}
/**
* @return ConferenceRecord[]
*/
public function getConferenceRecords()
{
return $this->conferenceRecords;
}
/**
* @param string
*/
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
/**
* @return string
*/
public function getNextPageToken()
{
return $this->nextPageToken;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ListConferenceRecordsResponse::class, 'Google_Service_Meet_ListConferenceRecordsResponse');
@@ -0,0 +1,61 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class ListParticipantSessionsResponse extends \Google\Collection
{
protected $collection_key = 'participantSessions';
/**
* @var string
*/
public $nextPageToken;
protected $participantSessionsType = ParticipantSession::class;
protected $participantSessionsDataType = 'array';
/**
* @param string
*/
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
/**
* @return string
*/
public function getNextPageToken()
{
return $this->nextPageToken;
}
/**
* @param ParticipantSession[]
*/
public function setParticipantSessions($participantSessions)
{
$this->participantSessions = $participantSessions;
}
/**
* @return ParticipantSession[]
*/
public function getParticipantSessions()
{
return $this->participantSessions;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ListParticipantSessionsResponse::class, 'Google_Service_Meet_ListParticipantSessionsResponse');
@@ -0,0 +1,79 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class ListParticipantsResponse extends \Google\Collection
{
protected $collection_key = 'participants';
/**
* @var string
*/
public $nextPageToken;
protected $participantsType = Participant::class;
protected $participantsDataType = 'array';
/**
* @var int
*/
public $totalSize;
/**
* @param string
*/
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
/**
* @return string
*/
public function getNextPageToken()
{
return $this->nextPageToken;
}
/**
* @param Participant[]
*/
public function setParticipants($participants)
{
$this->participants = $participants;
}
/**
* @return Participant[]
*/
public function getParticipants()
{
return $this->participants;
}
/**
* @param int
*/
public function setTotalSize($totalSize)
{
$this->totalSize = $totalSize;
}
/**
* @return int
*/
public function getTotalSize()
{
return $this->totalSize;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ListParticipantsResponse::class, 'Google_Service_Meet_ListParticipantsResponse');
@@ -0,0 +1,61 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class ListRecordingsResponse extends \Google\Collection
{
protected $collection_key = 'recordings';
/**
* @var string
*/
public $nextPageToken;
protected $recordingsType = Recording::class;
protected $recordingsDataType = 'array';
/**
* @param string
*/
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
/**
* @return string
*/
public function getNextPageToken()
{
return $this->nextPageToken;
}
/**
* @param Recording[]
*/
public function setRecordings($recordings)
{
$this->recordings = $recordings;
}
/**
* @return Recording[]
*/
public function getRecordings()
{
return $this->recordings;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ListRecordingsResponse::class, 'Google_Service_Meet_ListRecordingsResponse');
@@ -0,0 +1,61 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class ListTranscriptEntriesResponse extends \Google\Collection
{
protected $collection_key = 'transcriptEntries';
/**
* @var string
*/
public $nextPageToken;
protected $transcriptEntriesType = TranscriptEntry::class;
protected $transcriptEntriesDataType = 'array';
/**
* @param string
*/
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
/**
* @return string
*/
public function getNextPageToken()
{
return $this->nextPageToken;
}
/**
* @param TranscriptEntry[]
*/
public function setTranscriptEntries($transcriptEntries)
{
$this->transcriptEntries = $transcriptEntries;
}
/**
* @return TranscriptEntry[]
*/
public function getTranscriptEntries()
{
return $this->transcriptEntries;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ListTranscriptEntriesResponse::class, 'Google_Service_Meet_ListTranscriptEntriesResponse');
@@ -0,0 +1,61 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class ListTranscriptsResponse extends \Google\Collection
{
protected $collection_key = 'transcripts';
/**
* @var string
*/
public $nextPageToken;
protected $transcriptsType = Transcript::class;
protected $transcriptsDataType = 'array';
/**
* @param string
*/
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
/**
* @return string
*/
public function getNextPageToken()
{
return $this->nextPageToken;
}
/**
* @param Transcript[]
*/
public function setTranscripts($transcripts)
{
$this->transcripts = $transcripts;
}
/**
* @return Transcript[]
*/
public function getTranscripts()
{
return $this->transcripts;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ListTranscriptsResponse::class, 'Google_Service_Meet_ListTranscriptsResponse');
@@ -0,0 +1,25 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class MeetEmpty extends \Google\Model
{
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(MeetEmpty::class, 'Google_Service_Meet_MeetEmpty');
@@ -0,0 +1,128 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class Participant extends \Google\Model
{
protected $anonymousUserType = AnonymousUser::class;
protected $anonymousUserDataType = '';
/**
* @var string
*/
public $earliestStartTime;
/**
* @var string
*/
public $latestEndTime;
/**
* @var string
*/
public $name;
protected $phoneUserType = PhoneUser::class;
protected $phoneUserDataType = '';
protected $signedinUserType = SignedinUser::class;
protected $signedinUserDataType = '';
/**
* @param AnonymousUser
*/
public function setAnonymousUser(AnonymousUser $anonymousUser)
{
$this->anonymousUser = $anonymousUser;
}
/**
* @return AnonymousUser
*/
public function getAnonymousUser()
{
return $this->anonymousUser;
}
/**
* @param string
*/
public function setEarliestStartTime($earliestStartTime)
{
$this->earliestStartTime = $earliestStartTime;
}
/**
* @return string
*/
public function getEarliestStartTime()
{
return $this->earliestStartTime;
}
/**
* @param string
*/
public function setLatestEndTime($latestEndTime)
{
$this->latestEndTime = $latestEndTime;
}
/**
* @return string
*/
public function getLatestEndTime()
{
return $this->latestEndTime;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param PhoneUser
*/
public function setPhoneUser(PhoneUser $phoneUser)
{
$this->phoneUser = $phoneUser;
}
/**
* @return PhoneUser
*/
public function getPhoneUser()
{
return $this->phoneUser;
}
/**
* @param SignedinUser
*/
public function setSignedinUser(SignedinUser $signedinUser)
{
$this->signedinUser = $signedinUser;
}
/**
* @return SignedinUser
*/
public function getSignedinUser()
{
return $this->signedinUser;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Participant::class, 'Google_Service_Meet_Participant');
@@ -0,0 +1,80 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class ParticipantSession extends \Google\Model
{
/**
* @var string
*/
public $endTime;
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $startTime;
/**
* @param string
*/
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
/**
* @return string
*/
public function getEndTime()
{
return $this->endTime;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
/**
* @return string
*/
public function getStartTime()
{
return $this->startTime;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ParticipantSession::class, 'Google_Service_Meet_ParticipantSession');
@@ -0,0 +1,44 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class PhoneUser extends \Google\Model
{
/**
* @var string
*/
public $displayName;
/**
* @param string
*/
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
/**
* @return string
*/
public function getDisplayName()
{
return $this->displayName;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(PhoneUser::class, 'Google_Service_Meet_PhoneUser');
@@ -0,0 +1,114 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class Recording extends \Google\Model
{
protected $driveDestinationType = DriveDestination::class;
protected $driveDestinationDataType = '';
/**
* @var string
*/
public $endTime;
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $startTime;
/**
* @var string
*/
public $state;
/**
* @param DriveDestination
*/
public function setDriveDestination(DriveDestination $driveDestination)
{
$this->driveDestination = $driveDestination;
}
/**
* @return DriveDestination
*/
public function getDriveDestination()
{
return $this->driveDestination;
}
/**
* @param string
*/
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
/**
* @return string
*/
public function getEndTime()
{
return $this->endTime;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
/**
* @return string
*/
public function getStartTime()
{
return $this->startTime;
}
/**
* @param string
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return string
*/
public function getState()
{
return $this->state;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Recording::class, 'Google_Service_Meet_Recording');
@@ -0,0 +1,79 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet\Resource;
use Google\Service\Meet\ConferenceRecord;
use Google\Service\Meet\ListConferenceRecordsResponse;
/**
* The "conferenceRecords" collection of methods.
* Typical usage is:
* <code>
* $meetService = new Google\Service\Meet(...);
* $conferenceRecords = $meetService->conferenceRecords;
* </code>
*/
class ConferenceRecords extends \Google\Service\Resource
{
/**
* Gets a conference record by conference ID. (conferenceRecords.get)
*
* @param string $name Required. Resource name of the conference.
* @param array $optParams Optional parameters.
* @return ConferenceRecord
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], ConferenceRecord::class);
}
/**
* Lists the conference records. By default, ordered by start time and in
* descending order. (conferenceRecords.listConferenceRecords)
*
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. User specified filtering condition in
* [EBNF
* format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form). The
* following are the filterable fields: * `space.meeting_code` * `space.name` *
* `start_time` * `end_time` For example, consider the following filters: *
* `space.name = "spaces/NAME"` * `space.meeting_code = "abc-mnop-xyz"` *
* `start_time>="2024-01-01T00:00:00.000Z" AND
* start_time<="2024-01-02T00:00:00.000Z"` * `end_time IS NULL`
* @opt_param int pageSize Optional. Maximum number of conference records to
* return. The service might return fewer than this value. If unspecified, at
* most 25 conference records are returned. The maximum value is 100; values
* above 100 are coerced to 100. Maximum might change in the future.
* @opt_param string pageToken Optional. Page token returned from previous List
* Call.
* @return ListConferenceRecordsResponse
* @throws \Google\Service\Exception
*/
public function listConferenceRecords($optParams = [])
{
$params = [];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListConferenceRecordsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ConferenceRecords::class, 'Google_Service_Meet_Resource_ConferenceRecords');
@@ -0,0 +1,81 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet\Resource;
use Google\Service\Meet\ListParticipantsResponse;
use Google\Service\Meet\Participant;
/**
* The "participants" collection of methods.
* Typical usage is:
* <code>
* $meetService = new Google\Service\Meet(...);
* $participants = $meetService->conferenceRecords_participants;
* </code>
*/
class ConferenceRecordsParticipants extends \Google\Service\Resource
{
/**
* Gets a participant by participant ID. (participants.get)
*
* @param string $name Required. Resource name of the participant.
* @param array $optParams Optional parameters.
* @return Participant
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Participant::class);
}
/**
* Lists the participants in a conference record. By default, ordered by join
* time and in descending order. This API supports `fields` as standard
* parameters like every other API. However, when the `fields` request parameter
* is omitted, this API defaults to `'participants, next_page_token'`.
* (participants.listConferenceRecordsParticipants)
*
* @param string $parent Required. Format:
* `conferenceRecords/{conference_record}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. User specified filtering condition in
* [EBNF
* format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form). The
* following are the filterable fields: * `earliest_start_time` *
* `latest_end_time` For example, `latest_end_time IS NULL` returns active
* participants in the conference.
* @opt_param int pageSize Maximum number of participants to return. The service
* might return fewer than this value. If unspecified, at most 100 participants
* are returned. The maximum value is 250; values above 250 are coerced to 250.
* Maximum might change in the future.
* @opt_param string pageToken Page token returned from previous List Call.
* @return ListParticipantsResponse
* @throws \Google\Service\Exception
*/
public function listConferenceRecordsParticipants($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListParticipantsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ConferenceRecordsParticipants::class, 'Google_Service_Meet_Resource_ConferenceRecordsParticipants');
@@ -0,0 +1,84 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet\Resource;
use Google\Service\Meet\ListParticipantSessionsResponse;
use Google\Service\Meet\ParticipantSession;
/**
* The "participantSessions" collection of methods.
* Typical usage is:
* <code>
* $meetService = new Google\Service\Meet(...);
* $participantSessions = $meetService->conferenceRecords_participants_participantSessions;
* </code>
*/
class ConferenceRecordsParticipantsParticipantSessions extends \Google\Service\Resource
{
/**
* Gets a participant session by participant session ID.
* (participantSessions.get)
*
* @param string $name Required. Resource name of the participant.
* @param array $optParams Optional parameters.
* @return ParticipantSession
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], ParticipantSession::class);
}
/**
* Lists the participant sessions of a participant in a conference record. By
* default, ordered by join time and in descending order. This API supports
* `fields` as standard parameters like every other API. However, when the
* `fields` request parameter is omitted this API defaults to
* `'participantsessions, next_page_token'`.
* (participantSessions.listConferenceRecordsParticipantsParticipantSessions)
*
* @param string $parent Required. Format:
* `conferenceRecords/{conference_record}/participants/{participant}`
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. User specified filtering condition in
* [EBNF
* format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form). The
* following are the filterable fields: * `start_time` * `end_time` For example,
* `end_time IS NULL` returns active participant sessions in the conference
* record.
* @opt_param int pageSize Optional. Maximum number of participant sessions to
* return. The service might return fewer than this value. If unspecified, at
* most 100 participants are returned. The maximum value is 250; values above
* 250 are coerced to 250. Maximum might change in the future.
* @opt_param string pageToken Optional. Page token returned from previous List
* Call.
* @return ListParticipantSessionsResponse
* @throws \Google\Service\Exception
*/
public function listConferenceRecordsParticipantsParticipantSessions($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListParticipantSessionsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ConferenceRecordsParticipantsParticipantSessions::class, 'Google_Service_Meet_Resource_ConferenceRecordsParticipantsParticipantSessions');
@@ -0,0 +1,73 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet\Resource;
use Google\Service\Meet\ListRecordingsResponse;
use Google\Service\Meet\Recording;
/**
* The "recordings" collection of methods.
* Typical usage is:
* <code>
* $meetService = new Google\Service\Meet(...);
* $recordings = $meetService->conferenceRecords_recordings;
* </code>
*/
class ConferenceRecordsRecordings extends \Google\Service\Resource
{
/**
* Gets a recording by recording ID. (recordings.get)
*
* @param string $name Required. Resource name of the recording.
* @param array $optParams Optional parameters.
* @return Recording
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Recording::class);
}
/**
* Lists the recording resources from the conference record. By default, ordered
* by start time and in ascending order.
* (recordings.listConferenceRecordsRecordings)
*
* @param string $parent Required. Format:
* `conferenceRecords/{conference_record}`
* @param array $optParams Optional parameters.
*
* @opt_param int pageSize Maximum number of recordings to return. The service
* might return fewer than this value. If unspecified, at most 10 recordings are
* returned. The maximum value is 100; values above 100 are coerced to 100.
* Maximum might change in the future.
* @opt_param string pageToken Page token returned from previous List Call.
* @return ListRecordingsResponse
* @throws \Google\Service\Exception
*/
public function listConferenceRecordsRecordings($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListRecordingsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ConferenceRecordsRecordings::class, 'Google_Service_Meet_Resource_ConferenceRecordsRecordings');
@@ -0,0 +1,73 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet\Resource;
use Google\Service\Meet\ListTranscriptsResponse;
use Google\Service\Meet\Transcript;
/**
* The "transcripts" collection of methods.
* Typical usage is:
* <code>
* $meetService = new Google\Service\Meet(...);
* $transcripts = $meetService->conferenceRecords_transcripts;
* </code>
*/
class ConferenceRecordsTranscripts extends \Google\Service\Resource
{
/**
* Gets a transcript by transcript ID. (transcripts.get)
*
* @param string $name Required. Resource name of the transcript.
* @param array $optParams Optional parameters.
* @return Transcript
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Transcript::class);
}
/**
* Lists the set of transcripts from the conference record. By default, ordered
* by start time and in ascending order.
* (transcripts.listConferenceRecordsTranscripts)
*
* @param string $parent Required. Format:
* `conferenceRecords/{conference_record}`
* @param array $optParams Optional parameters.
*
* @opt_param int pageSize Maximum number of transcripts to return. The service
* might return fewer than this value. If unspecified, at most 10 transcripts
* are returned. The maximum value is 100; values above 100 are coerced to 100.
* Maximum might change in the future.
* @opt_param string pageToken Page token returned from previous List Call.
* @return ListTranscriptsResponse
* @throws \Google\Service\Exception
*/
public function listConferenceRecordsTranscripts($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListTranscriptsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ConferenceRecordsTranscripts::class, 'Google_Service_Meet_Resource_ConferenceRecordsTranscripts');
@@ -0,0 +1,78 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet\Resource;
use Google\Service\Meet\ListTranscriptEntriesResponse;
use Google\Service\Meet\TranscriptEntry;
/**
* The "entries" collection of methods.
* Typical usage is:
* <code>
* $meetService = new Google\Service\Meet(...);
* $entries = $meetService->conferenceRecords_transcripts_entries;
* </code>
*/
class ConferenceRecordsTranscriptsEntries extends \Google\Service\Resource
{
/**
* Gets a `TranscriptEntry` resource by entry ID. Note: The transcript entries
* returned by the Google Meet API might not match the transcription found in
* the Google Docs transcript file. This can occur when the Google Docs
* transcript file is modified after generation. (entries.get)
*
* @param string $name Required. Resource name of the `TranscriptEntry`.
* @param array $optParams Optional parameters.
* @return TranscriptEntry
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], TranscriptEntry::class);
}
/**
* Lists the structured transcript entries per transcript. By default, ordered
* by start time and in ascending order. Note: The transcript entries returned
* by the Google Meet API might not match the transcription found in the Google
* Docs transcript file. This can occur when the Google Docs transcript file is
* modified after generation. (entries.listConferenceRecordsTranscriptsEntries)
*
* @param string $parent Required. Format:
* `conferenceRecords/{conference_record}/transcripts/{transcript}`
* @param array $optParams Optional parameters.
*
* @opt_param int pageSize Maximum number of entries to return. The service
* might return fewer than this value. If unspecified, at most 10 entries are
* returned. The maximum value is 100; values above 100 are coerced to 100.
* Maximum might change in the future.
* @opt_param string pageToken Page token returned from previous List Call.
* @return ListTranscriptEntriesResponse
* @throws \Google\Service\Exception
*/
public function listConferenceRecordsTranscriptsEntries($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListTranscriptEntriesResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ConferenceRecordsTranscriptsEntries::class, 'Google_Service_Meet_Resource_ConferenceRecordsTranscriptsEntries');
@@ -0,0 +1,130 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet\Resource;
use Google\Service\Meet\EndActiveConferenceRequest;
use Google\Service\Meet\MeetEmpty;
use Google\Service\Meet\Space;
/**
* The "spaces" collection of methods.
* Typical usage is:
* <code>
* $meetService = new Google\Service\Meet(...);
* $spaces = $meetService->spaces;
* </code>
*/
class Spaces extends \Google\Service\Resource
{
/**
* Creates a space. (spaces.create)
*
* @param Space $postBody
* @param array $optParams Optional parameters.
* @return Space
* @throws \Google\Service\Exception
*/
public function create(Space $postBody, $optParams = [])
{
$params = ['postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('create', [$params], Space::class);
}
/**
* Ends an active conference (if there's one). For an example, see [End active
* conference](https://developers.google.com/meet/api/guides/meeting-spaces#end-
* active-conference). (spaces.endActiveConference)
*
* @param string $name Required. Resource name of the space. Format:
* `spaces/{space}`. `{space}` is the resource identifier for the space. It's a
* unique, server-generated ID and is case sensitive. For example,
* `jQCFfuBOdN5z`. For more information, see [How Meet identifies a meeting
* space](https://developers.google.com/meet/api/guides/meeting-spaces#identify-
* meeting-space).
* @param EndActiveConferenceRequest $postBody
* @param array $optParams Optional parameters.
* @return MeetEmpty
* @throws \Google\Service\Exception
*/
public function endActiveConference($name, EndActiveConferenceRequest $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('endActiveConference', [$params], MeetEmpty::class);
}
/**
* Gets details about a meeting space. For an example, see [Get a meeting
* space](https://developers.google.com/meet/api/guides/meeting-spaces#get-
* meeting-space). (spaces.get)
*
* @param string $name Required. Resource name of the space. Format:
* `spaces/{space}` or `spaces/{meetingCode}`. `{space}` is the resource
* identifier for the space. It's a unique, server-generated ID and is case
* sensitive. For example, `jQCFfuBOdN5z`. `{meetingCode}` is an alias for the
* space. It's a typeable, unique character string and is non-case sensitive.
* For example, `abc-mnop-xyz`. The maximum length is 128 characters. A
* `meetingCode` shouldn't be stored long term as it can become dissociated from
* a meeting space and can be reused for different meeting spaces in the future.
* Generally, a `meetingCode` expires 365 days after last use. For more
* information, see [Learn about meeting codes in Google
* Meet](https://support.google.com/meet/answer/10710509). For more information,
* see [How Meet identifies a meeting
* space](https://developers.google.com/meet/api/guides/meeting-spaces#identify-
* meeting-space).
* @param array $optParams Optional parameters.
* @return Space
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Space::class);
}
/**
* Updates details about a meeting space. For an example, see [Update a meeting
* space](https://developers.google.com/meet/api/guides/meeting-spaces#update-
* meeting-space). (spaces.patch)
*
* @param string $name Immutable. Resource name of the space. Format:
* `spaces/{space}`. `{space}` is the resource identifier for the space. It's a
* unique, server-generated ID and is case sensitive. For example,
* `jQCFfuBOdN5z`. For more information, see [How Meet identifies a meeting
* space](https://developers.google.com/meet/api/guides/meeting-spaces#identify-
* meeting-space).
* @param Space $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string updateMask Optional. Field mask used to specify the fields
* to be updated in the space. If update_mask isn't provided(not set, set with
* empty paths, or only has "" as paths), it defaults to update all fields
* provided with values in the request. Using "*" as update_mask will update all
* fields, including deleting fields not set in the request.
* @return Space
* @throws \Google\Service\Exception
*/
public function patch($name, Space $postBody, $optParams = [])
{
$params = ['name' => $name, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], Space::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Spaces::class, 'Google_Service_Meet_Resource_Spaces');
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class SignedinUser extends \Google\Model
{
/**
* @var string
*/
public $displayName;
/**
* @var string
*/
public $user;
/**
* @param string
*/
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
/**
* @return string
*/
public function getDisplayName()
{
return $this->displayName;
}
/**
* @param string
*/
public function setUser($user)
{
$this->user = $user;
}
/**
* @return string
*/
public function getUser()
{
return $this->user;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(SignedinUser::class, 'Google_Service_Meet_SignedinUser');
@@ -0,0 +1,112 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class Space extends \Google\Model
{
protected $activeConferenceType = ActiveConference::class;
protected $activeConferenceDataType = '';
protected $configType = SpaceConfig::class;
protected $configDataType = '';
/**
* @var string
*/
public $meetingCode;
/**
* @var string
*/
public $meetingUri;
/**
* @var string
*/
public $name;
/**
* @param ActiveConference
*/
public function setActiveConference(ActiveConference $activeConference)
{
$this->activeConference = $activeConference;
}
/**
* @return ActiveConference
*/
public function getActiveConference()
{
return $this->activeConference;
}
/**
* @param SpaceConfig
*/
public function setConfig(SpaceConfig $config)
{
$this->config = $config;
}
/**
* @return SpaceConfig
*/
public function getConfig()
{
return $this->config;
}
/**
* @param string
*/
public function setMeetingCode($meetingCode)
{
$this->meetingCode = $meetingCode;
}
/**
* @return string
*/
public function getMeetingCode()
{
return $this->meetingCode;
}
/**
* @param string
*/
public function setMeetingUri($meetingUri)
{
$this->meetingUri = $meetingUri;
}
/**
* @return string
*/
public function getMeetingUri()
{
return $this->meetingUri;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Space::class, 'Google_Service_Meet_Space');
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class SpaceConfig extends \Google\Model
{
/**
* @var string
*/
public $accessType;
/**
* @var string
*/
public $entryPointAccess;
/**
* @param string
*/
public function setAccessType($accessType)
{
$this->accessType = $accessType;
}
/**
* @return string
*/
public function getAccessType()
{
return $this->accessType;
}
/**
* @param string
*/
public function setEntryPointAccess($entryPointAccess)
{
$this->entryPointAccess = $entryPointAccess;
}
/**
* @return string
*/
public function getEntryPointAccess()
{
return $this->entryPointAccess;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(SpaceConfig::class, 'Google_Service_Meet_SpaceConfig');
@@ -0,0 +1,114 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class Transcript extends \Google\Model
{
protected $docsDestinationType = DocsDestination::class;
protected $docsDestinationDataType = '';
/**
* @var string
*/
public $endTime;
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $startTime;
/**
* @var string
*/
public $state;
/**
* @param DocsDestination
*/
public function setDocsDestination(DocsDestination $docsDestination)
{
$this->docsDestination = $docsDestination;
}
/**
* @return DocsDestination
*/
public function getDocsDestination()
{
return $this->docsDestination;
}
/**
* @param string
*/
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
/**
* @return string
*/
public function getEndTime()
{
return $this->endTime;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
/**
* @return string
*/
public function getStartTime()
{
return $this->startTime;
}
/**
* @param string
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return string
*/
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');
@@ -0,0 +1,134 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Meet;
class TranscriptEntry extends \Google\Model
{
/**
* @var string
*/
public $endTime;
/**
* @var string
*/
public $languageCode;
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $participant;
/**
* @var string
*/
public $startTime;
/**
* @var string
*/
public $text;
/**
* @param string
*/
public function setEndTime($endTime)
{
$this->endTime = $endTime;
}
/**
* @return string
*/
public function getEndTime()
{
return $this->endTime;
}
/**
* @param string
*/
public function setLanguageCode($languageCode)
{
$this->languageCode = $languageCode;
}
/**
* @return string
*/
public function getLanguageCode()
{
return $this->languageCode;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setParticipant($participant)
{
$this->participant = $participant;
}
/**
* @return string
*/
public function getParticipant()
{
return $this->participant;
}
/**
* @param string
*/
public function setStartTime($startTime)
{
$this->startTime = $startTime;
}
/**
* @return string
*/
public function getStartTime()
{
return $this->startTime;
}
/**
* @param string
*/
public function setText($text)
{
$this->text = $text;
}
/**
* @return string
*/
public function getText()
{
return $this->text;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(TranscriptEntry::class, 'Google_Service_Meet_TranscriptEntry');