Class: Google::Apis::DfareportingV3_2::CompatibleFields
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_2::CompatibleFields
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb
Overview
Represents a response to the queryCompatibleFields method.
Instance Attribute Summary collapse
-
#cross_dimension_reach_report_compatible_fields ⇒ Google::Apis::DfareportingV3_2::CrossDimensionReachReportCompatibleFields
Represents fields that are compatible to be selected for a report of type " CROSS_DIMENSION_REACH".
-
#floodlight_report_compatible_fields ⇒ Google::Apis::DfareportingV3_2::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::DfareportingV3_2::PathToConversionReportCompatibleFields
Represents fields that are compatible to be selected for a report of type " PATH_TO_CONVERSION".
-
#reach_report_compatible_fields ⇒ Google::Apis::DfareportingV3_2::ReachReportCompatibleFields
Represents fields that are compatible to be selected for a report of type " REACH".
-
#report_compatible_fields ⇒ Google::Apis::DfareportingV3_2::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::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CompatibleFields
Returns a new instance of CompatibleFields
2220 2221 2222 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2220 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cross_dimension_reach_report_compatible_fields ⇒ Google::Apis::DfareportingV3_2::CrossDimensionReachReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
CROSS_DIMENSION_REACH".
Corresponds to the JSON property crossDimensionReachReportCompatibleFields
2189 2190 2191 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2189 def cross_dimension_reach_report_compatible_fields @cross_dimension_reach_report_compatible_fields end |
#floodlight_report_compatible_fields ⇒ Google::Apis::DfareportingV3_2::FloodlightReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
FlOODLIGHT".
Corresponds to the JSON property floodlightReportCompatibleFields
2195 2196 2197 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2195 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
2200 2201 2202 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2200 def kind @kind end |
#path_to_conversion_report_compatible_fields ⇒ Google::Apis::DfareportingV3_2::PathToConversionReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
PATH_TO_CONVERSION".
Corresponds to the JSON property pathToConversionReportCompatibleFields
2206 2207 2208 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2206 def path_to_conversion_report_compatible_fields @path_to_conversion_report_compatible_fields end |
#reach_report_compatible_fields ⇒ Google::Apis::DfareportingV3_2::ReachReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
REACH".
Corresponds to the JSON property reachReportCompatibleFields
2212 2213 2214 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2212 def reach_report_compatible_fields @reach_report_compatible_fields end |
#report_compatible_fields ⇒ Google::Apis::DfareportingV3_2::ReportCompatibleFields
Represents fields that are compatible to be selected for a report of type "
STANDARD".
Corresponds to the JSON property reportCompatibleFields
2218 2219 2220 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2218 def report_compatible_fields @report_compatible_fields end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2225 2226 2227 2228 2229 2230 2231 2232 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 2225 def update!(**args) @cross_dimension_reach_report_compatible_fields = args[:cross_dimension_reach_report_compatible_fields] if args.key?(:cross_dimension_reach_report_compatible_fields) @floodlight_report_compatible_fields = args[:floodlight_report_compatible_fields] if args.key?(:floodlight_report_compatible_fields) @kind = args[:kind] if args.key?(:kind) @path_to_conversion_report_compatible_fields = args[:path_to_conversion_report_compatible_fields] if args.key?(:path_to_conversion_report_compatible_fields) @reach_report_compatible_fields = args[:reach_report_compatible_fields] if args.key?(:reach_report_compatible_fields) @report_compatible_fields = args[:report_compatible_fields] if args.key?(:report_compatible_fields) end |