Class: Google::Apis::DoubleclickbidmanagerV1::UploadStatus
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DoubleclickbidmanagerV1::UploadStatus
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/doubleclickbidmanager_v1/classes.rb,
generated/google/apis/doubleclickbidmanager_v1/representations.rb,
generated/google/apis/doubleclickbidmanager_v1/representations.rb 
Overview
Represents the status of upload.
Instance Attribute Summary collapse
- 
  
    
      #errors  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Reasons why upload can't be completed.
 - 
  
    
      #row_status  ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::RowStatus> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Per-row upload status.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UploadStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UploadStatus.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UploadStatus
Returns a new instance of UploadStatus
      793 794 795  | 
    
      # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 793 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#errors ⇒ Array<String>
Reasons why upload can't be completed.
Corresponds to the JSON property errors
      786 787 788  | 
    
      # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 786 def errors @errors end  | 
  
#row_status ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::RowStatus>
Per-row upload status.
Corresponds to the JSON property rowStatus
      791 792 793  | 
    
      # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 791 def row_status @row_status end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      798 799 800 801  | 
    
      # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 798 def update!(**args) @errors = args[:errors] if args.key?(:errors) @row_status = args[:row_status] if args.key?(:row_status) end  |