Class: Google::Apis::DfareportingV2_3::CompatibleFields

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

Overview

Represents a response to the queryCompatibleFields method.

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) ⇒ CompatibleFields

Returns a new instance of CompatibleFields.



2074
2075
2076
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 2074

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

Instance Attribute Details

#cross_dimension_reach_report_compatible_fieldsGoogle::Apis::DfareportingV2_3::CrossDimensionReachReportCompatibleFields

Represents fields that are compatible to be selected for a report of type " CROSS_DIMENSION_REACH". Corresponds to the JSON property crossDimensionReachReportCompatibleFields



2043
2044
2045
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 2043

def cross_dimension_reach_report_compatible_fields
  @cross_dimension_reach_report_compatible_fields
end

#floodlight_report_compatible_fieldsGoogle::Apis::DfareportingV2_3::FloodlightReportCompatibleFields

Represents fields that are compatible to be selected for a report of type " FlOODLIGHT". Corresponds to the JSON property floodlightReportCompatibleFields



2049
2050
2051
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 2049

def floodlight_report_compatible_fields
  @floodlight_report_compatible_fields
end

#kindString

The kind of resource this is, in this case dfareporting#compatibleFields. Corresponds to the JSON property kind

Returns:

  • (String)


2054
2055
2056
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 2054

def kind
  @kind
end

#path_to_conversion_report_compatible_fieldsGoogle::Apis::DfareportingV2_3::PathToConversionReportCompatibleFields

Represents fields that are compatible to be selected for a report of type " PATH_TO_CONVERSION". Corresponds to the JSON property pathToConversionReportCompatibleFields



2060
2061
2062
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 2060

def path_to_conversion_report_compatible_fields
  @path_to_conversion_report_compatible_fields
end

#reach_report_compatible_fieldsGoogle::Apis::DfareportingV2_3::ReachReportCompatibleFields

Represents fields that are compatible to be selected for a report of type " REACH". Corresponds to the JSON property reachReportCompatibleFields



2066
2067
2068
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 2066

def reach_report_compatible_fields
  @reach_report_compatible_fields
end

#report_compatible_fieldsGoogle::Apis::DfareportingV2_3::ReportCompatibleFields

Represents fields that are compatible to be selected for a report of type " STANDARD". Corresponds to the JSON property reportCompatibleFields



2072
2073
2074
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 2072

def report_compatible_fields
  @report_compatible_fields
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2079
2080
2081
2082
2083
2084
2085
2086
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 2079

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