class Google::Apis::IdentitytoolkitV3::VerifyAssertionRequest
Request to verify the IDP assertion.
Attributes
When it's true, automatically creates a new account if the user doesn't exist. When it's false, allows existing user to sign in normally and throws exception if the user doesn't exist. Corresponds to the JSON property `autoCreate` @return [Boolean]
When it's true, automatically creates a new account if the user doesn't exist. When it's false, allows existing user to sign in normally and throws exception if the user doesn't exist. Corresponds to the JSON property `autoCreate` @return [Boolean]
GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property `delegatedProjectNumber` @return [Fixnum]
The GITKit token of the authenticated user. Corresponds to the JSON property `idToken` @return [String]
Instance id token of the app. Corresponds to the JSON property `instanceId` @return [String]
The GITKit token for the non-trusted IDP pending to be confirmed by the user. Corresponds to the JSON property `pendingIdToken` @return [String]
The post body if the request is a HTTP POST. Corresponds to the JSON property `postBody` @return [String]
The URI to which the IDP redirects the user back. It may contain federated login result params added by the IDP. Corresponds to the JSON property `requestUri` @return [String]
Whether return 200 and IDP credential rather than throw exception when federated id is already linked. Corresponds to the JSON property `returnIdpCredential` @return [Boolean]
Whether return 200 and IDP credential rather than throw exception when federated id is already linked. Corresponds to the JSON property `returnIdpCredential` @return [Boolean]
Whether to return refresh tokens. Corresponds to the JSON property `returnRefreshToken` @return [Boolean]
Whether to return refresh tokens. Corresponds to the JSON property `returnRefreshToken` @return [Boolean]
Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]
Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]
Session ID, which should match the one in previous createAuthUri request. Corresponds to the JSON property `sessionId` @return [String]
For multi-tenant use cases, in order to construct sign-in URL with the correct IDP parameters, Firebear needs to know which Tenant to retrieve IDP configs from. Corresponds to the JSON property `tenantId` @return [String]
Tenant project number to be used for idp discovery. Corresponds to the JSON property `tenantProjectNumber` @return [Fixnum]
Public Class Methods
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1373 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1378 def update!(**args) @auto_create = args[:auto_create] if args.key?(:auto_create) @delegated_project_number = args[:delegated_project_number] if args.key?(:delegated_project_number) @id_token = args[:id_token] if args.key?(:id_token) @instance_id = args[:instance_id] if args.key?(:instance_id) @pending_id_token = args[:pending_id_token] if args.key?(:pending_id_token) @post_body = args[:post_body] if args.key?(:post_body) @request_uri = args[:request_uri] if args.key?(:request_uri) @return_idp_credential = args[:return_idp_credential] if args.key?(:return_idp_credential) @return_refresh_token = args[:return_refresh_token] if args.key?(:return_refresh_token) @return_secure_token = args[:return_secure_token] if args.key?(:return_secure_token) @session_id = args[:session_id] if args.key?(:session_id) @tenant_id = args[:tenant_id] if args.key?(:tenant_id) @tenant_project_number = args[:tenant_project_number] if args.key?(:tenant_project_number) end