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.
658 659 660 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 658 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
651 652 653 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 651 def index @index end |
#message ⇒ String
Detailed error message
Corresponds to the JSON property message
656 657 658 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 656 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
663 664 665 666 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 663 def update!(**args) @index = args[:index] if args.key?(:index) @message = args[:message] if args.key?(:message) end |