Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1BatchDeleteErrorInfo
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1BatchDeleteErrorInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/identitytoolkit_v1/classes.rb,
lib/google/apis/identitytoolkit_v1/representations.rb,
lib/google/apis/identitytoolkit_v1/representations.rb
Overview
Error info for account failed to be deleted.
Instance Attribute Summary collapse
-
#index ⇒ Fixnum
The index of the errored item in the original local_ids field.
-
#local_id ⇒ String
The corresponding user ID.
-
#message ⇒ String
Detailed error message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1BatchDeleteErrorInfo
constructor
A new instance of GoogleCloudIdentitytoolkitV1BatchDeleteErrorInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1BatchDeleteErrorInfo
Returns a new instance of GoogleCloudIdentitytoolkitV1BatchDeleteErrorInfo.
178 179 180 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 178 def initialize(**args) update!(**args) end |
Instance Attribute Details
#index ⇒ Fixnum
The index of the errored item in the original local_ids field.
Corresponds to the JSON property index
166 167 168 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 166 def index @index end |
#local_id ⇒ String
The corresponding user ID.
Corresponds to the JSON property localId
171 172 173 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 171 def local_id @local_id end |
#message ⇒ String
Detailed error message.
Corresponds to the JSON property message
176 177 178 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 176 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
183 184 185 186 187 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 183 def update!(**args) @index = args[:index] if args.key?(:index) @local_id = args[:local_id] if args.key?(:local_id) @message = args[:message] if args.key?(:message) end |