source: vendor/google/apiclient-services/src/CloudSecurityToken/GoogleIdentityStsV1ExchangeTokenResponse.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 6 weeks ago

Upload project files

  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[e3d4e0a]1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\CloudSecurityToken;
19
20class GoogleIdentityStsV1ExchangeTokenResponse extends \Google\Model
21{
22 protected $internal_gapi_mappings = [
23 "accessBoundarySessionKey" => "access_boundary_session_key",
24 "accessToken" => "access_token",
25 "expiresIn" => "expires_in",
26 "issuedTokenType" => "issued_token_type",
27 "tokenType" => "token_type",
28 ];
29 /**
30 * @var string
31 */
32 public $accessBoundarySessionKey;
33 /**
34 * @var string
35 */
36 public $accessToken;
37 /**
38 * @var int
39 */
40 public $expiresIn;
41 /**
42 * @var string
43 */
44 public $issuedTokenType;
45 /**
46 * @var string
47 */
48 public $tokenType;
49
50 /**
51 * @param string
52 */
53 public function setAccessBoundarySessionKey($accessBoundarySessionKey)
54 {
55 $this->accessBoundarySessionKey = $accessBoundarySessionKey;
56 }
57 /**
58 * @return string
59 */
60 public function getAccessBoundarySessionKey()
61 {
62 return $this->accessBoundarySessionKey;
63 }
64 /**
65 * @param string
66 */
67 public function setAccessToken($accessToken)
68 {
69 $this->accessToken = $accessToken;
70 }
71 /**
72 * @return string
73 */
74 public function getAccessToken()
75 {
76 return $this->accessToken;
77 }
78 /**
79 * @param int
80 */
81 public function setExpiresIn($expiresIn)
82 {
83 $this->expiresIn = $expiresIn;
84 }
85 /**
86 * @return int
87 */
88 public function getExpiresIn()
89 {
90 return $this->expiresIn;
91 }
92 /**
93 * @param string
94 */
95 public function setIssuedTokenType($issuedTokenType)
96 {
97 $this->issuedTokenType = $issuedTokenType;
98 }
99 /**
100 * @return string
101 */
102 public function getIssuedTokenType()
103 {
104 return $this->issuedTokenType;
105 }
106 /**
107 * @param string
108 */
109 public function setTokenType($tokenType)
110 {
111 $this->tokenType = $tokenType;
112 }
113 /**
114 * @return string
115 */
116 public function getTokenType()
117 {
118 return $this->tokenType;
119 }
120}
121
122// Adding a class alias for backwards compatibility with the previous class name.
123class_alias(GoogleIdentityStsV1ExchangeTokenResponse::class, 'Google_Service_CloudSecurityToken_GoogleIdentityStsV1ExchangeTokenResponse');
Note: See TracBrowser for help on using the repository browser.