class Google::Apis::IdentitytoolkitV3::DeleteAccountRequest
Request to delete account.
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 [Fixnum]
id_token[RW]
The GITKit token or STS id token of the authenticated user. Corresponds to the JSON property `idToken` @return [String]
local_id[RW]
The local ID of the user. Corresponds to the JSON property `localId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 479 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 484 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) @local_id = args[:local_id] if args.key?(:local_id) end