Class: Google::Apis::IdentitytoolkitV3::SignOutUserRequest
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV3::SignOutUserRequest
- 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_id ⇒ String
Instance id token of the app.
-
#local_id ⇒ String
The local ID of the user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SignOutUserRequest
constructor
A new instance of SignOutUserRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SignOutUserRequest
Returns a new instance of SignOutUserRequest
1058 1059 1060 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1058 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance_id ⇒ String
Instance id token of the app.
Corresponds to the JSON property instanceId
1051 1052 1053 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1051 def instance_id @instance_id end |
#local_id ⇒ String
The local ID of the user.
Corresponds to the JSON property localId
1056 1057 1058 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1056 def local_id @local_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1063 1064 1065 1066 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1063 def update!(**args) @instance_id = args[:instance_id] if args.key?(:instance_id) @local_id = args[:local_id] if args.key?(:local_id) end |