πŸ“‚ File Browser

/AgentAI/vendor/google/apiclient-services/src/CloudWorkstations
πŸŒ™ Dark Mode
🎯 Quick Launch:

πŸ“ Directories

πŸ“ Resource/ πŸ”“ Open

πŸ“„ Files

🐘 Accelerator.php
β–Ά Open πŸ“„ View Source
🐘 AuditConfig.php
β–Ά Open πŸ“„ View Source
🐘 AuditLogConfig.php
β–Ά Open πŸ“„ View Source
🐘 Binding.php
β–Ά Open πŸ“„ View Source
🐘 BoostConfig.php
β–Ά Open πŸ“„ View Source
🐘 CancelOperationRequest.php
β–Ά Open πŸ“„ View Source
🐘 Container.php
β–Ά Open πŸ“„ View Source
🐘 CustomerEncryptionKey.php
β–Ά Open πŸ“„ View Source
🐘 DomainConfig.php
β–Ά Open πŸ“„ View Source
🐘 EphemeralDirectory.php
β–Ά Open πŸ“„ View Source
🐘 Expr.php
β–Ά Open πŸ“„ View Source
🐘 GatewayConfig.php
β–Ά Open πŸ“„ View Source
🐘 GceConfidentialInstanceConfig.php
β–Ά Open πŸ“„ View Source
🐘 GceHyperdiskBalancedHighAvailability.php
β–Ά Open πŸ“„ View Source
🐘 GceInstance.php
β–Ά Open πŸ“„ View Source
🐘 GceInstanceHost.php
β–Ά Open πŸ“„ View Source
🐘 GcePersistentDisk.php
β–Ά Open πŸ“„ View Source
🐘 GceRegionalPersistentDisk.php
β–Ά Open πŸ“„ View Source
🐘 GceShieldedInstanceConfig.php
β–Ά Open πŸ“„ View Source
🐘 GenerateAccessTokenRequest.php
β–Ά Open πŸ“„ View Source
🐘 GenerateAccessTokenResponse.php
β–Ά Open πŸ“„ View Source
🐘 GoogleProtobufEmpty.php
β–Ά Open πŸ“„ View Source
🐘 Host.php
β–Ά Open πŸ“„ View Source
🐘 ListLocationsResponse.php
β–Ά Open πŸ“„ View Source
🐘 ListOperationsResponse.php
β–Ά Open πŸ“„ View Source
🐘 ListUsableWorkstationConfigsResponse.php
β–Ά Open πŸ“„ View Source
🐘 ListUsableWorkstationsResponse.php
β–Ά Open πŸ“„ View Source
🐘 ListWorkstationClustersResponse.php
β–Ά Open πŸ“„ View Source
🐘 ListWorkstationConfigsResponse.php
β–Ά Open πŸ“„ View Source
🐘 ListWorkstationsResponse.php
β–Ά Open πŸ“„ View Source
🐘 Location.php
β–Ά Open πŸ“„ View Source
🐘 Operation.php
β–Ά Open πŸ“„ View Source
🐘 OperationMetadata.php
β–Ά Open πŸ“„ View Source
🐘 PersistentDirectory.php
β–Ά Open πŸ“„ View Source
🐘 Policy.php
β–Ά Open πŸ“„ View Source
🐘 PortRange.php
β–Ά Open πŸ“„ View Source
🐘 PrivateClusterConfig.php
β–Ά Open πŸ“„ View Source
🐘 ReadinessCheck.php
β–Ά Open πŸ“„ View Source
🐘 RuntimeHost.php
β–Ά Open πŸ“„ View Source
🐘 SetIamPolicyRequest.php
β–Ά Open πŸ“„ View Source
🐘 StartWorkstationRequest.php
β–Ά Open πŸ“„ View Source
🐘 Status.php
β–Ά Open πŸ“„ View Source
🐘 StopWorkstationRequest.php
β–Ά Open πŸ“„ View Source
🐘 TestIamPermissionsRequest.php
β–Ά Open πŸ“„ View Source
🐘 TestIamPermissionsResponse.php
β–Ά Open πŸ“„ View Source
🐘 Workstation.php
β–Ά Open πŸ“„ View Source
🐘 WorkstationCluster.php
β–Ά Open πŸ“„ View Source
🐘 WorkstationConfig.php
β–Ά Open πŸ“„ View Source
🐘 WorkstationsEmpty.php
β–Ά Open πŸ“„ View Source

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

class GenerateAccessTokenResponse extends \Google\Model
{
  /**
   * The generated bearer access token. To use this token, include it in an
   * Authorization header of an HTTP request sent to the associated
   * workstation's hostnameβ€”for example, `Authorization: Bearer `.
   *
   * @var string
   */
  public $accessToken;
  /**
   * Time at which the generated token will expire.
   *
   * @var string
   */
  public $expireTime;

  /**
   * The generated bearer access token. To use this token, include it in an
   * Authorization header of an HTTP request sent to the associated
   * workstation's hostnameβ€”for example, `Authorization: Bearer `.
   *
   * @param string $accessToken
   */
  public function setAccessToken($accessToken)
  {
    $this->accessToken = $accessToken;
  }
  /**
   * @return string
   */
  public function getAccessToken()
  {
    return $this->accessToken;
  }
  /**
   * Time at which the generated token will expire.
   *
   * @param string $expireTime
   */
  public function setExpireTime($expireTime)
  {
    $this->expireTime = $expireTime;
  }
  /**
   * @return string
   */
  public function getExpireTime()
  {
    return $this->expireTime;
  }
}

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