Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1ErrorInfo
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1ErrorInfo
- 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 information explaining why an account cannot be uploaded. batch upload.
Instance Attribute Summary collapse
-
#index ⇒ Fixnum
The index of the item, range is [0, request.size - 1] Corresponds to the JSON property
index. -
#message ⇒ String
Detailed error message Corresponds to the JSON property
message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1ErrorInfo
constructor
A new instance of GoogleCloudIdentitytoolkitV1ErrorInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1ErrorInfo
Returns a new instance of GoogleCloudIdentitytoolkitV1ErrorInfo.
656 657 658 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 656 def initialize(**args) update!(**args) end |
Instance Attribute Details
#index ⇒ Fixnum
The index of the item, range is [0, request.size - 1]
Corresponds to the JSON property index
649 650 651 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 649 def index @index end |
#message ⇒ String
Detailed error message
Corresponds to the JSON property message
654 655 656 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 654 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
661 662 663 664 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 661 def update!(**args) @index = args[:index] if args.key?(:index) @message = args[:message] if args.key?(:message) end |