📄 Source: EnterpriseCrmEventbusProtoSuspensionAuthPermissions.php
<?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\Integrations;
class EnterpriseCrmEventbusProtoSuspensionAuthPermissions extends \Google\Model
{
protected $gaiaIdentityType = EnterpriseCrmEventbusProtoSuspensionAuthPermissionsGaiaIdentity::class;
protected $gaiaIdentityDataType = '';
protected $googleGroupType = EnterpriseCrmEventbusProtoSuspensionAuthPermissionsGaiaIdentity::class;
protected $googleGroupDataType = '';
/**
* @var string
*/
public $loasRole;
/**
* @var string
*/
public $mdbGroup;
/**
* Represents a Gaia identity for a person or service account.
*
* @param EnterpriseCrmEventbusProtoSuspensionAuthPermissionsGaiaIdentity $gaiaIdentity
*/
public function setGaiaIdentity(EnterpriseCrmEventbusProtoSuspensionAuthPermissionsGaiaIdentity $gaiaIdentity)
{
$this->gaiaIdentity = $gaiaIdentity;
}
/**
* @return EnterpriseCrmEventbusProtoSuspensionAuthPermissionsGaiaIdentity
*/
public function getGaiaIdentity()
{
return $this->gaiaIdentity;
}
/**
* @param EnterpriseCrmEventbusProtoSuspensionAuthPermissionsGaiaIdentity $googleGroup
*/
public function setGoogleGroup(EnterpriseCrmEventbusProtoSuspensionAuthPermissionsGaiaIdentity $googleGroup)
{
$this->googleGroup = $googleGroup;
}
/**
* @return EnterpriseCrmEventbusProtoSuspensionAuthPermissionsGaiaIdentity
*/
public function getGoogleGroup()
{
return $this->googleGroup;
}
/**
* @param string $loasRole
*/
public function setLoasRole($loasRole)
{
$this->loasRole = $loasRole;
}
/**
* @return string
*/
public function getLoasRole()
{
return $this->loasRole;
}
/**
* @param string $mdbGroup
*/
public function setMdbGroup($mdbGroup)
{
$this->mdbGroup = $mdbGroup;
}
/**
* @return string
*/
public function getMdbGroup()
{
return $this->mdbGroup;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(EnterpriseCrmEventbusProtoSuspensionAuthPermissions::class, 'Google_Service_Integrations_EnterpriseCrmEventbusProtoSuspensionAuthPermissions');
← Back