Show / Hide Table of Contents

Class GenerateIdTokenResponse

Inheritance
object
GenerateIdTokenResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.IAMCredentials.v1.Data
Assembly: Google.Apis.IAMCredentials.v1.dll
Syntax
public class GenerateIdTokenResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Token

The OpenId Connect ID token. The token is a JSON Web Token (JWT) that contains a payload with claims. See the JSON Web Token spec for more information. Here is an example of a decoded JWT payload:

{ "iss": "https://accounts.google.com", "iat": 1496953245, "exp": 1496953245,
"aud": "https://www.example.com", "sub": "107517467455664443765", "azp": "107517467455664443765", "email":
"my-iam-account@my-project.iam.gserviceaccount.com", "email_verified": true, "google": {
"organization_number": 123456 } }
Declaration
[JsonProperty("token")]
public virtual string Token { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX