Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1BatchDeleteErrorInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#indexFixnum

The index of the errored item in the original local_ids field. Corresponds to the JSON property index

Returns:

  • (Fixnum)


166
167
168
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 166

def index
  @index
end

#local_idString

The corresponding user ID. Corresponds to the JSON property localId

Returns:

  • (String)


171
172
173
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 171

def local_id
  @local_id
end

#messageString

Detailed error message. Corresponds to the JSON property message

Returns:

  • (String)


176
177
178
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 176

def message
  @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