Class: Google::Apis::IdentitytoolkitV3::SignOutUserRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/identitytoolkit_v3/classes.rb,
generated/google/apis/identitytoolkit_v3/representations.rb,
generated/google/apis/identitytoolkit_v3/representations.rb

Overview

Request to sign out user.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SignOutUserRequest

Returns a new instance of SignOutUserRequest.



864
865
866
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 864

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#instance_idString

Instance id token of the app. Corresponds to the JSON property instanceId

Returns:

  • (String)


857
858
859
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 857

def instance_id
  @instance_id
end

#local_idString

The local ID of the user. Corresponds to the JSON property localId

Returns:

  • (String)


862
863
864
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 862

def local_id
  @local_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



869
870
871
872
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 869

def update!(**args)
  @instance_id = args[:instance_id] if args.key?(:instance_id)
  @local_id = args[:local_id] if args.key?(:local_id)
end