Class: Google::Apis::DfareportingV2_1::CompatibleFields
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::CompatibleFields
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/dfareporting_v2_1/classes.rb,
generated/google/apis/dfareporting_v2_1/representations.rb,
generated/google/apis/dfareporting_v2_1/representations.rb
Overview
Represents a response to the queryCompatibleFields method.
Instance Attribute Summary collapse
-
#cross_dimension_reach_report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::CrossDimensionReachReportCompatibleFields
Represents fields that are compatible to be selected for a report of type " CROSS_DIMENSION_REACH".
-
#floodlight_report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::FloodlightReportCompatibleFields
Represents fields that are compatible to be selected for a report of type " FlOODLIGHT".
-
#kind ⇒ String
The kind of resource this is, in this case dfareporting#compatibleFields.
-
#path_to_conversion_report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::PathToConversionReportCompatibleFields
Represents fields that are compatible to be selected for a report of type " PATH_TO_CONVERSION".
-
#reach_report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::ReachReportCompatibleFields
Represents fields that are compatible to be selected for a report of type " REACH".
-
#report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::ReportCompatibleFields
Represents fields that are compatible to be selected for a report of type " STANDARD".
Instance Method Summary collapse
-
#initialize(**args) ⇒ CompatibleFields
constructor
A new instance of CompatibleFields.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CompatibleFields
Returns a new instance of CompatibleFields.
2046 2047 2048 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 2046 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cross_dimension_reach_report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::CrossDimensionReachReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
CROSS_DIMENSION_REACH".
Corresponds to the JSON property crossDimensionReachReportCompatibleFields
2015 2016 2017 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 2015 def cross_dimension_reach_report_compatible_fields @cross_dimension_reach_report_compatible_fields end |
#floodlight_report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::FloodlightReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
FlOODLIGHT".
Corresponds to the JSON property floodlightReportCompatibleFields
2021 2022 2023 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 2021 def floodlight_report_compatible_fields @floodlight_report_compatible_fields end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#compatibleFields.
Corresponds to the JSON property kind
2026 2027 2028 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 2026 def kind @kind end |
#path_to_conversion_report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::PathToConversionReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
PATH_TO_CONVERSION".
Corresponds to the JSON property pathToConversionReportCompatibleFields
2032 2033 2034 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 2032 def path_to_conversion_report_compatible_fields @path_to_conversion_report_compatible_fields end |
#reach_report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::ReachReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
REACH".
Corresponds to the JSON property reachReportCompatibleFields
2038 2039 2040 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 2038 def reach_report_compatible_fields @reach_report_compatible_fields end |
#report_compatible_fields ⇒ Google::Apis::DfareportingV2_1::ReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
STANDARD".
Corresponds to the JSON property reportCompatibleFields
2044 2045 2046 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 2044 def report_compatible_fields @report_compatible_fields end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2051 2052 2053 2054 2055 2056 2057 2058 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 2051 def update!(**args) @cross_dimension_reach_report_compatible_fields = args[:cross_dimension_reach_report_compatible_fields] unless args[:cross_dimension_reach_report_compatible_fields].nil? @floodlight_report_compatible_fields = args[:floodlight_report_compatible_fields] unless args[:floodlight_report_compatible_fields].nil? @kind = args[:kind] unless args[:kind].nil? @path_to_conversion_report_compatible_fields = args[:path_to_conversion_report_compatible_fields] unless args[:path_to_conversion_report_compatible_fields].nil? @reach_report_compatible_fields = args[:reach_report_compatible_fields] unless args[:reach_report_compatible_fields].nil? @report_compatible_fields = args[:report_compatible_fields] unless args[:report_compatible_fields].nil? end |