class Google::Apis::IdentitytoolkitV3::VerifyAssertionRequest

Request to verify the IDP assertion.

Attributes

delegated_project_number[RW]

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property `delegatedProjectNumber` @return [String]

id_token[RW]

The GITKit token of the authenticated user. Corresponds to the JSON property `idToken` @return [String]

instance_id[RW]

Instance id token of the app. Corresponds to the JSON property `instanceId` @return [String]

pending_id_token[RW]

The GITKit token for the non-trusted IDP pending to be confirmed by the user. Corresponds to the JSON property `pendingIdToken` @return [String]

post_body[RW]

The post body if the request is a HTTP POST. Corresponds to the JSON property `postBody` @return [String]

request_uri[RW]

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]

return_refresh_token[RW]

Whether to return refresh tokens. Corresponds to the JSON property `returnRefreshToken` @return [Boolean]

return_refresh_token?[RW]

Whether to return refresh tokens. Corresponds to the JSON property `returnRefreshToken` @return [Boolean]

return_secure_token[RW]

Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]

return_secure_token?[RW]

Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]

session_id[RW]

Session ID, which should match the one in previous createAuthUri request. Corresponds to the JSON property `sessionId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 1025
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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