Class: Google::Apis::IdentitytoolkitV3::UploadAccountResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::IdentitytoolkitV3::UploadAccountResponse
 
- 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
Overview
Respone of uploading accounts in batch.
Defined Under Namespace
Classes: Error
Instance Attribute Summary collapse
- 
  
    
      #error  ⇒ Array<Google::Apis::IdentitytoolkitV3::UploadAccountResponse::Error> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error encountered while processing the account info. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The fixed string "identitytoolkit#UploadAccountResponse". 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UploadAccountResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UploadAccountResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UploadAccountResponse
Returns a new instance of UploadAccountResponse
| 1983 1984 1985 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1983 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#error ⇒ Array<Google::Apis::IdentitytoolkitV3::UploadAccountResponse::Error>
The error encountered while processing the account info.
Corresponds to the JSON property error
| 1976 1977 1978 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1976 def error @error end | 
#kind ⇒ String
The fixed string "identitytoolkit#UploadAccountResponse".
Corresponds to the JSON property kind
| 1981 1982 1983 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1981 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1988 1989 1990 1991 | # File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1988 def update!(**args) @error = args[:error] if args.key?(:error) @kind = args[:kind] if args.key?(:kind) end |