Class: Google::Apis::DoubleclickbidmanagerV1_1::RunQueryRequest
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV1_1::RunQueryRequest
- 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
Request to run a stored query to generate a report.
Instance Attribute Summary collapse
-
#data_range ⇒ String
Report data range used to generate the report.
-
#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.
-
#timezone_code ⇒ String
Canonical timezone code for report data time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RunQueryRequest
constructor
A new instance of RunQueryRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RunQueryRequest
Returns a new instance of RunQueryRequest.
957 958 959 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 957 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_range ⇒ String
Report data range used to generate the report.
Corresponds to the JSON property dataRange
936 937 938 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 936 def data_range @data_range end |
#report_data_end_time_ms ⇒ Fixnum
The ending time for the data that is shown in the report. Note,
reportDataEndTimeMs is required if dataRange is CUSTOM_DATES and ignored
otherwise.
Corresponds to the JSON property reportDataEndTimeMs
943 944 945 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 943 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. Note,
reportDataStartTimeMs is required if dataRange is CUSTOM_DATES and ignored
otherwise.
Corresponds to the JSON property reportDataStartTimeMs
950 951 952 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 950 def report_data_start_time_ms @report_data_start_time_ms end |
#timezone_code ⇒ String
Canonical timezone code for report data time. Defaults to America/New_York.
Corresponds to the JSON property timezoneCode
955 956 957 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 955 def timezone_code @timezone_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
962 963 964 965 966 967 |
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 962 def update!(**args) @data_range = args[:data_range] if args.key?(:data_range) @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) @timezone_code = args[:timezone_code] if args.key?(:timezone_code) end |