Class: Google::Apis::DfareportingV3_4::Report::PathAttributionCriteria
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::Report::PathAttributionCriteria
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb
Overview
The report criteria for a report of type "PATH_ATTRIBUTION".
Instance Attribute Summary collapse
-
#activity_filters ⇒ Array<Google::Apis::DfareportingV3_4::DimensionValue>
The list of 'dfa:activity' values to filter on.
-
#custom_channel_grouping ⇒ Google::Apis::DfareportingV3_4::ChannelGrouping
Represents a DfaReporting channel grouping.
-
#date_range ⇒ Google::Apis::DfareportingV3_4::DateRange
Represents a date range.
-
#dimensions ⇒ Array<Google::Apis::DfareportingV3_4::SortedDimension>
The list of dimensions the report should include.
-
#floodlight_config_id ⇒ Google::Apis::DfareportingV3_4::DimensionValue
Represents a DimensionValue resource.
-
#metric_names ⇒ Array<String>
The list of names of metrics the report should include.
-
#path_filters ⇒ Array<Google::Apis::DfareportingV3_4::PathFilter>
Path Filters.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PathAttributionCriteria
constructor
A new instance of PathAttributionCriteria.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PathAttributionCriteria
Returns a new instance of PathAttributionCriteria.
10809 10810 10811 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10809 def initialize(**args) update!(**args) end |
Instance Attribute Details
#activity_filters ⇒ Array<Google::Apis::DfareportingV3_4::DimensionValue>
The list of 'dfa:activity' values to filter on.
Corresponds to the JSON property activityFilters
10777 10778 10779 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10777 def activity_filters @activity_filters end |
#custom_channel_grouping ⇒ Google::Apis::DfareportingV3_4::ChannelGrouping
Represents a DfaReporting channel grouping.
Corresponds to the JSON property customChannelGrouping
10782 10783 10784 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10782 def custom_channel_grouping @custom_channel_grouping end |
#date_range ⇒ Google::Apis::DfareportingV3_4::DateRange
Represents a date range.
Corresponds to the JSON property dateRange
10787 10788 10789 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10787 def date_range @date_range end |
#dimensions ⇒ Array<Google::Apis::DfareportingV3_4::SortedDimension>
The list of dimensions the report should include.
Corresponds to the JSON property dimensions
10792 10793 10794 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10792 def dimensions @dimensions end |
#floodlight_config_id ⇒ Google::Apis::DfareportingV3_4::DimensionValue
Represents a DimensionValue resource.
Corresponds to the JSON property floodlightConfigId
10797 10798 10799 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10797 def floodlight_config_id @floodlight_config_id end |
#metric_names ⇒ Array<String>
The list of names of metrics the report should include.
Corresponds to the JSON property metricNames
10802 10803 10804 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10802 def metric_names @metric_names end |
#path_filters ⇒ Array<Google::Apis::DfareportingV3_4::PathFilter>
Path Filters.
Corresponds to the JSON property pathFilters
10807 10808 10809 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10807 def path_filters @path_filters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10814 10815 10816 10817 10818 10819 10820 10821 10822 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 10814 def update!(**args) @activity_filters = args[:activity_filters] if args.key?(:activity_filters) @custom_channel_grouping = args[:custom_channel_grouping] if args.key?(:custom_channel_grouping) @date_range = args[:date_range] if args.key?(:date_range) @dimensions = args[:dimensions] if args.key?(:dimensions) @floodlight_config_id = args[:floodlight_config_id] if args.key?(:floodlight_config_id) @metric_names = args[:metric_names] if args.key?(:metric_names) @path_filters = args[:path_filters] if args.key?(:path_filters) end |