Class: Google::Apis::DoubleclickbidmanagerV1::ReportStatus
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DoubleclickbidmanagerV1::ReportStatus
 
- 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
Report status.
Instance Attribute Summary collapse
- 
  
    
      #failure  ⇒ Google::Apis::DoubleclickbidmanagerV1::ReportFailure 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An explanation of a report failure. 
- 
  
    
      #finish_time_ms  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time when this report either completed successfully or failed. 
- 
  
    
      #format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The file type of the report. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The state of the report. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ReportStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ReportStatus. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReportStatus
Returns a new instance of ReportStatus
| 618 619 620 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 618 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#failure ⇒ Google::Apis::DoubleclickbidmanagerV1::ReportFailure
An explanation of a report failure.
Corresponds to the JSON property failure
| 601 602 603 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 601 def failure @failure end | 
#finish_time_ms ⇒ Fixnum
The time when this report either completed successfully or failed.
Corresponds to the JSON property finishTimeMs
| 606 607 608 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 606 def finish_time_ms @finish_time_ms end | 
#format ⇒ String
The file type of the report.
Corresponds to the JSON property format
| 611 612 613 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 611 def format @format end | 
#state ⇒ String
The state of the report.
Corresponds to the JSON property state
| 616 617 618 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 616 def state @state end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 623 624 625 626 627 628 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 623 def update!(**args) @failure = args[:failure] if args.key?(:failure) @finish_time_ms = args[:finish_time_ms] if args.key?(:finish_time_ms) @format = args[:format] if args.key?(:format) @state = args[:state] if args.key?(:state) end |