πŸ“‚ File Browser

AgentAI/vendor/google/apiclient-services/src/CCAIPlatform
β˜€οΈ Light Mode
🎯 Quick Launch:

πŸ“ Directories

πŸ“ Resource/ πŸ”“ Open

πŸ“„ Files

🐘 AdminUser.php
β–Ά Open πŸ“„ View Source
🐘 AuthenticationConfig.php
β–Ά Open πŸ“„ View Source
🐘 BasicAuthConfig.php
β–Ά Open πŸ“„ View Source
🐘 CancelOperationRequest.php
β–Ά Open πŸ“„ View Source
🐘 Component.php
β–Ά Open πŸ“„ View Source
🐘 ContactCenter.php
β–Ά Open πŸ“„ View Source
🐘 ContactCenterQuota.php
β–Ά Open πŸ“„ View Source
🐘 ContactcenteraiplatformEmpty.php
β–Ά Open πŸ“„ View Source
🐘 Critical.php
β–Ά Open πŸ“„ View Source
🐘 Date.php
β–Ά Open πŸ“„ View Source
🐘 DateList.php
β–Ά Open πŸ“„ View Source
🐘 DateTime.php
β–Ά Open πŸ“„ View Source
🐘 Early.php
β–Ά Open πŸ“„ View Source
🐘 EmployeeInfo.php
β–Ά Open πŸ“„ View Source
🐘 EventTemplate.php
β–Ά Open πŸ“„ View Source
🐘 FeatureConfig.php
β–Ά Open πŸ“„ View Source
🐘 GenerateShiftsRequest.php
β–Ά Open πŸ“„ View Source
🐘 GoogleCloudCommonOperationMetadata.php
β–Ά Open πŸ“„ View Source
🐘 InstanceConfig.php
β–Ά Open πŸ“„ View Source
🐘 ListContactCentersResponse.php
β–Ά Open πŸ“„ View Source
🐘 ListLocationsResponse.php
β–Ά Open πŸ“„ View Source
🐘 ListOperationsResponse.php
β–Ά Open πŸ“„ View Source
🐘 Location.php
β–Ά Open πŸ“„ View Source
🐘 Normal.php
β–Ά Open πŸ“„ View Source
🐘 Operation.php
β–Ά Open πŸ“„ View Source
🐘 OperationMetadata.php
β–Ά Open πŸ“„ View Source
🐘 PlanningHorizon.php
β–Ά Open πŸ“„ View Source
🐘 PrivateAccess.php
β–Ά Open πŸ“„ View Source
🐘 PscSetting.php
β–Ά Open πŸ“„ View Source
🐘 Quota.php
β–Ά Open πŸ“„ View Source
🐘 SAMLParams.php
β–Ά Open πŸ“„ View Source
🐘 SamlConfig.php
β–Ά Open πŸ“„ View Source
🐘 ServiceAttachment.php
β–Ά Open πŸ“„ View Source
🐘 ShiftTemplate.php
β–Ά Open πŸ“„ View Source
🐘 SolverConfig.php
β–Ά Open πŸ“„ View Source
🐘 Status.php
β–Ά Open πŸ“„ View Source
🐘 TimeOfDay.php
β–Ά Open πŸ“„ View Source
🐘 TimeZone.php
β–Ά Open πŸ“„ View Source
🐘 URIs.php
β–Ά Open πŸ“„ View Source
🐘 UnwantedEventInterval.php
β–Ά Open πŸ“„ View Source
🐘 WeeklySchedule.php
β–Ά Open πŸ“„ View Source
🐘 WorkforceDemand.php
β–Ά Open πŸ“„ View Source
🐘 WorkforceDemandList.php
β–Ά Open πŸ“„ View Source

πŸ“„ Source: SAMLParams.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\CCAIPlatform;

class SAMLParams extends \Google\Collection
{
  protected $collection_key = 'authenticationContexts';
  /**
   * Additional contexts used for authentication.
   *
   * @var string[]
   */
  public $authenticationContexts;
  /**
   * SAML certificate
   *
   * @var string
   */
  public $certificate;
  /**
   * IdP field that maps to the user’s email address
   *
   * @var string
   */
  public $emailMapping;
  /**
   * Entity id URL
   *
   * @var string
   */
  public $entityId;
  /**
   * Single sign-on URL
   *
   * @var string
   */
  public $ssoUri;
  /**
   * Email address of the first admin users.
   *
   * @deprecated
   * @var string
   */
  public $userEmail;

  /**
   * Additional contexts used for authentication.
   *
   * @param string[] $authenticationContexts
   */
  public function setAuthenticationContexts($authenticationContexts)
  {
    $this->authenticationContexts = $authenticationContexts;
  }
  /**
   * @return string[]
   */
  public function getAuthenticationContexts()
  {
    return $this->authenticationContexts;
  }
  /**
   * SAML certificate
   *
   * @param string $certificate
   */
  public function setCertificate($certificate)
  {
    $this->certificate = $certificate;
  }
  /**
   * @return string
   */
  public function getCertificate()
  {
    return $this->certificate;
  }
  /**
   * IdP field that maps to the user’s email address
   *
   * @param string $emailMapping
   */
  public function setEmailMapping($emailMapping)
  {
    $this->emailMapping = $emailMapping;
  }
  /**
   * @return string
   */
  public function getEmailMapping()
  {
    return $this->emailMapping;
  }
  /**
   * Entity id URL
   *
   * @param string $entityId
   */
  public function setEntityId($entityId)
  {
    $this->entityId = $entityId;
  }
  /**
   * @return string
   */
  public function getEntityId()
  {
    return $this->entityId;
  }
  /**
   * Single sign-on URL
   *
   * @param string $ssoUri
   */
  public function setSsoUri($ssoUri)
  {
    $this->ssoUri = $ssoUri;
  }
  /**
   * @return string
   */
  public function getSsoUri()
  {
    return $this->ssoUri;
  }
  /**
   * Email address of the first admin users.
   *
   * @deprecated
   * @param string $userEmail
   */
  public function setUserEmail($userEmail)
  {
    $this->userEmail = $userEmail;
  }
  /**
   * @deprecated
   * @return string
   */
  public function getUserEmail()
  {
    return $this->userEmail;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(SAMLParams::class, 'Google_Service_CCAIPlatform_SAMLParams');
← Back