Class AuthCodeData
AuthCodeData contains the data the runtime plane will give the connector backend in exchange for access and refresh tokens.
Implements
Inherited Members
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 |