class Google::Apis::IdentitytoolkitV3::VerifyAssertionRequest
Request to verify the IDP assertion.
Attributes
GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property `delegatedProjectNumber` @return [String]
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 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]
Public Class Methods
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 1025 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 1030 def update!(**args) @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_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) end