Class: Google::Apis::IdentitytoolkitV3::UploadAccountResponse::Error
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV3::UploadAccountResponse::Error
- 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
Instance Attribute Summary collapse
-
#index ⇒ Fixnum
The index of the malformed account, starting from 0.
-
#message ⇒ String
Detailed error message for the account info.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Error
constructor
A new instance of Error.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Error
Returns a new instance of Error
1914 1915 1916 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1914 def initialize(**args) update!(**args) end |
Instance Attribute Details
#index ⇒ Fixnum
The index of the malformed account, starting from 0.
Corresponds to the JSON property index
1907 1908 1909 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1907 def index @index end |
#message ⇒ String
Detailed error message for the account info.
Corresponds to the JSON property message
1912 1913 1914 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1912 def @message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1919 1920 1921 1922 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1919 def update!(**args) @index = args[:index] if args.key?(:index) @message = args[:message] if args.key?(:message) end |