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
      2063 2064 2065  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2063 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
      2056 2057 2058  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2056 def index @index end  | 
  
#message ⇒ String
Detailed error message for the account info.
Corresponds to the JSON property message
      2061 2062 2063  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2061 def @message end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2068 2069 2070 2071  | 
    
      # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2068 def update!(**args) @index = args[:index] if args.key?(:index) @message = args[:message] if args.key?(:message) end  |