Class: Google::Apis::DoubleclickbidmanagerV1_1::ReportMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV1_1::ReportMetadata
- 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 metadata.
Instance Attribute Summary collapse
-
#google_cloud_storage_path ⇒ String
The path to the location in Google Cloud Storage where the report is stored.
-
#report_data_end_time_ms ⇒ Fixnum
The ending time for the data that is shown in the report.
-
#report_data_start_time_ms ⇒ Fixnum
The starting time for the data that is shown in the report.
-
#status ⇒ Google::Apis::DoubleclickbidmanagerV1_1::ReportStatus
Report status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportMetadata
constructor
A new instance of ReportMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportMetadata
Returns a new instance of ReportMetadata.
801 802 803 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 801 def initialize(**args) update!(**args) end |
Instance Attribute Details
#google_cloud_storage_path ⇒ String
The path to the location in Google Cloud Storage where the report is stored.
Corresponds to the JSON property googleCloudStoragePath
784 785 786 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 784 def google_cloud_storage_path @google_cloud_storage_path end |
#report_data_end_time_ms ⇒ Fixnum
The ending time for the data that is shown in the report.
Corresponds to the JSON property reportDataEndTimeMs
789 790 791 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 789 def report_data_end_time_ms @report_data_end_time_ms end |
#report_data_start_time_ms ⇒ Fixnum
The starting time for the data that is shown in the report.
Corresponds to the JSON property reportDataStartTimeMs
794 795 796 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 794 def report_data_start_time_ms @report_data_start_time_ms end |
#status ⇒ Google::Apis::DoubleclickbidmanagerV1_1::ReportStatus
Report status.
Corresponds to the JSON property status
799 800 801 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 799 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
806 807 808 809 810 811 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 806 def update!(**args) @google_cloud_storage_path = args[:google_cloud_storage_path] if args.key?(:google_cloud_storage_path) @report_data_end_time_ms = args[:report_data_end_time_ms] if args.key?(:report_data_end_time_ms) @report_data_start_time_ms = args[:report_data_start_time_ms] if args.key?(:report_data_start_time_ms) @status = args[:status] if args.key?(:status) end |