Show / Hide Table of Contents

Class AuthCodeData

AuthCodeData contains the data the runtime plane will give the connector backend in exchange for access and refresh tokens.

Inheritance
object
AuthCodeData
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.Connectors.v2.Data
Assembly: Google.Apis.Connectors.v2.dll
Syntax
public class AuthCodeData : IDirectResponseSchema

Properties

AuthCode

OAuth authorization code.

Declaration
[JsonProperty("authCode")]
public virtual string AuthCode { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

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

PkceVerifier

OAuth PKCE verifier, needed if PKCE is enabled for this particular connection.

Declaration
[JsonProperty("pkceVerifier")]
public virtual string PkceVerifier { get; set; }
Property Value
Type Description
string

RedirectUri

OAuth redirect URI passed in during the auth code flow, required by some OAuth backends.

Declaration
[JsonProperty("redirectUri")]
public virtual string RedirectUri { get; set; }
Property Value
Type Description
string

Scopes

Scopes the connection will request when the user performs the auth code flow.

Declaration
[JsonProperty("scopes")]
public virtual IList<string> Scopes { get; set; }
Property Value
Type Description
IList<string>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX