Class: Google::Apis::DoubleclickbidmanagerV1_1::ReportStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/doubleclickbidmanager_v1_1/classes.rb,
generated/google/apis/doubleclickbidmanager_v1_1/representations.rb,
generated/google/apis/doubleclickbidmanager_v1_1/representations.rb

Overview

Report status.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ReportStatus

Returns a new instance of ReportStatus.



677
678
679
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 677

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#failureGoogle::Apis::DoubleclickbidmanagerV1_1::ReportFailure

An explanation of a report failure. Corresponds to the JSON property failure



660
661
662
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 660

def failure
  @failure
end

#finish_time_msFixnum

The time when this report either completed successfully or failed. Corresponds to the JSON property finishTimeMs

Returns:

  • (Fixnum)


665
666
667
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 665

def finish_time_ms
  @finish_time_ms
end

#formatString

The file type of the report. Corresponds to the JSON property format

Returns:

  • (String)


670
671
672
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 670

def format
  @format
end

#stateString

The state of the report. Corresponds to the JSON property state

Returns:

  • (String)


675
676
677
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 675

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



682
683
684
685
686
687
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 682

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