google-apis-dfareporting_v4 0.21.0 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2758,6 +2758,93 @@ module Google
2758
2758
  end
2759
2759
  end
2760
2760
 
2761
+ # Contains the content source of the dynamic feed.
2762
+ class ContentSource
2763
+ include Google::Apis::Core::Hashable
2764
+
2765
+ # Optional. The name of the content source. It is defaulted to content source
2766
+ # file name if not provided.
2767
+ # Corresponds to the JSON property `contentSourceName`
2768
+ # @return [String]
2769
+ attr_accessor :content_source_name
2770
+
2771
+ # Modification timestamp.
2772
+ # Corresponds to the JSON property `createInfo`
2773
+ # @return [Google::Apis::DfareportingV4::LastModifiedInfo]
2774
+ attr_accessor :create_info
2775
+
2776
+ # Modification timestamp.
2777
+ # Corresponds to the JSON property `lastModifiedInfo`
2778
+ # @return [Google::Apis::DfareportingV4::LastModifiedInfo]
2779
+ attr_accessor :last_modified_info
2780
+
2781
+ # Contains the meta data of the content source. This is a read-only field.
2782
+ # Corresponds to the JSON property `metaData`
2783
+ # @return [Google::Apis::DfareportingV4::ContentSourceMetaData]
2784
+ attr_accessor :meta_data
2785
+
2786
+ # Required. The link to the file of the content source.
2787
+ # Corresponds to the JSON property `resourceLink`
2788
+ # @return [String]
2789
+ attr_accessor :resource_link
2790
+
2791
+ # Required. The resource type of the content source.
2792
+ # Corresponds to the JSON property `resourceType`
2793
+ # @return [String]
2794
+ attr_accessor :resource_type
2795
+
2796
+ def initialize(**args)
2797
+ update!(**args)
2798
+ end
2799
+
2800
+ # Update properties of this object
2801
+ def update!(**args)
2802
+ @content_source_name = args[:content_source_name] if args.key?(:content_source_name)
2803
+ @create_info = args[:create_info] if args.key?(:create_info)
2804
+ @last_modified_info = args[:last_modified_info] if args.key?(:last_modified_info)
2805
+ @meta_data = args[:meta_data] if args.key?(:meta_data)
2806
+ @resource_link = args[:resource_link] if args.key?(:resource_link)
2807
+ @resource_type = args[:resource_type] if args.key?(:resource_type)
2808
+ end
2809
+ end
2810
+
2811
+ # Contains the meta data of the content source. This is a read-only field.
2812
+ class ContentSourceMetaData
2813
+ include Google::Apis::Core::Hashable
2814
+
2815
+ # Output only. The charset of the content source.
2816
+ # Corresponds to the JSON property `charset`
2817
+ # @return [String]
2818
+ attr_accessor :charset
2819
+
2820
+ # Output only. The list of column names in the content source.
2821
+ # Corresponds to the JSON property `fieldNames`
2822
+ # @return [Array<String>]
2823
+ attr_accessor :field_names
2824
+
2825
+ # Output only. The number of rows in the content source.
2826
+ # Corresponds to the JSON property `rowNumber`
2827
+ # @return [Fixnum]
2828
+ attr_accessor :row_number
2829
+
2830
+ # Output only. The separator of the content source.
2831
+ # Corresponds to the JSON property `separator`
2832
+ # @return [String]
2833
+ attr_accessor :separator
2834
+
2835
+ def initialize(**args)
2836
+ update!(**args)
2837
+ end
2838
+
2839
+ # Update properties of this object
2840
+ def update!(**args)
2841
+ @charset = args[:charset] if args.key?(:charset)
2842
+ @field_names = args[:field_names] if args.key?(:field_names)
2843
+ @row_number = args[:row_number] if args.key?(:row_number)
2844
+ @separator = args[:separator] if args.key?(:separator)
2845
+ end
2846
+ end
2847
+
2761
2848
  # A Conversion represents when a user successfully performs a desired action
2762
2849
  # after seeing an ad.
2763
2850
  class Conversion
@@ -5130,6 +5217,62 @@ module Google
5130
5217
  end
5131
5218
  end
5132
5219
 
5220
+ # Contains custom rule information.
5221
+ class CustomRule
5222
+ include Google::Apis::Core::Hashable
5223
+
5224
+ # Optional. Name of this custom rule.
5225
+ # Corresponds to the JSON property `name`
5226
+ # @return [String]
5227
+ attr_accessor :name
5228
+
5229
+ # Optional. Priority of the custom rule.
5230
+ # Corresponds to the JSON property `priority`
5231
+ # @return [Fixnum]
5232
+ attr_accessor :priority
5233
+
5234
+ # Optional. A list of field filter, the custom rule will apply.
5235
+ # Corresponds to the JSON property `ruleBlocks`
5236
+ # @return [Array<Google::Apis::DfareportingV4::RuleBlock>]
5237
+ attr_accessor :rule_blocks
5238
+
5239
+ def initialize(**args)
5240
+ update!(**args)
5241
+ end
5242
+
5243
+ # Update properties of this object
5244
+ def update!(**args)
5245
+ @name = args[:name] if args.key?(:name)
5246
+ @priority = args[:priority] if args.key?(:priority)
5247
+ @rule_blocks = args[:rule_blocks] if args.key?(:rule_blocks)
5248
+ end
5249
+ end
5250
+
5251
+ # Contains custom value field information.
5252
+ class CustomValueField
5253
+ include Google::Apis::Core::Hashable
5254
+
5255
+ # Optional. Field ID in the element.
5256
+ # Corresponds to the JSON property `fieldId`
5257
+ # @return [Fixnum]
5258
+ attr_accessor :field_id
5259
+
5260
+ # Optional. Custom key used to match for auto filtering.
5261
+ # Corresponds to the JSON property `requestKey`
5262
+ # @return [String]
5263
+ attr_accessor :request_key
5264
+
5265
+ def initialize(**args)
5266
+ update!(**args)
5267
+ end
5268
+
5269
+ # Update properties of this object
5270
+ def update!(**args)
5271
+ @field_id = args[:field_id] if args.key?(:field_id)
5272
+ @request_key = args[:request_key] if args.key?(:request_key)
5273
+ end
5274
+ end
5275
+
5133
5276
  # Custom Viewability Metric
5134
5277
  class CustomViewabilityMetric
5135
5278
  include Google::Apis::Core::Hashable
@@ -5401,6 +5544,31 @@ module Google
5401
5544
  end
5402
5545
  end
5403
5546
 
5547
+ # Contains dependent field value information.
5548
+ class DependentFieldValue
5549
+ include Google::Apis::Core::Hashable
5550
+
5551
+ # Optional. The ID of the element that value's field will match against.
5552
+ # Corresponds to the JSON property `elementId`
5553
+ # @return [Fixnum]
5554
+ attr_accessor :element_id
5555
+
5556
+ # Optional. The field id of the dependent field.
5557
+ # Corresponds to the JSON property `fieldId`
5558
+ # @return [Fixnum]
5559
+ attr_accessor :field_id
5560
+
5561
+ def initialize(**args)
5562
+ update!(**args)
5563
+ end
5564
+
5565
+ # Update properties of this object
5566
+ def update!(**args)
5567
+ @element_id = args[:element_id] if args.key?(:element_id)
5568
+ @field_id = args[:field_id] if args.key?(:field_id)
5569
+ end
5570
+ end
5571
+
5404
5572
  # Google Ad Manager Settings
5405
5573
  class DfpSettings
5406
5574
  include Google::Apis::Core::Hashable
@@ -5792,6 +5960,333 @@ module Google
5792
5960
  end
5793
5961
  end
5794
5962
 
5963
+ # Contains dynamic feed information.
5964
+ class DynamicFeed
5965
+ include Google::Apis::Core::Hashable
5966
+
5967
+ # Contains the content source of the dynamic feed.
5968
+ # Corresponds to the JSON property `contentSource`
5969
+ # @return [Google::Apis::DfareportingV4::ContentSource]
5970
+ attr_accessor :content_source
5971
+
5972
+ # Modification timestamp.
5973
+ # Corresponds to the JSON property `createInfo`
5974
+ # @return [Google::Apis::DfareportingV4::LastModifiedInfo]
5975
+ attr_accessor :create_info
5976
+
5977
+ # Output only. Unique ID of this dynamic feed. This is a read-only, auto-
5978
+ # generated field.
5979
+ # Corresponds to the JSON property `dynamicFeedId`
5980
+ # @return [Fixnum]
5981
+ attr_accessor :dynamic_feed_id
5982
+
5983
+ # Optional. Name of this dynamic feed. It is defaulted to content source file
5984
+ # name if not provided.
5985
+ # Corresponds to the JSON property `dynamicFeedName`
5986
+ # @return [String]
5987
+ attr_accessor :dynamic_feed_name
5988
+
5989
+ # Contains the element of the dynamic feed.
5990
+ # Corresponds to the JSON property `element`
5991
+ # @return [Google::Apis::DfareportingV4::Element]
5992
+ attr_accessor :element
5993
+
5994
+ # Contains the ingestion status of the dynamic feed. Feed ingestion is an
5995
+ # asynchronous process. If the feed create request is successful, feed ingestion
5996
+ # will be processed in the background, including validation, assets retrieval,
5997
+ # and saving the data from the resource link. The processing time is dependent
5998
+ # on the data size in the resource link. This read-only status field contains
5999
+ # the current stage of that processing and its ingestion state.
6000
+ # Corresponds to the JSON property `feedIngestionStatus`
6001
+ # @return [Google::Apis::DfareportingV4::FeedIngestionStatus]
6002
+ attr_accessor :feed_ingestion_status
6003
+
6004
+ # Contains the schedule of the dynamic feed.
6005
+ # Corresponds to the JSON property `feedSchedule`
6006
+ # @return [Google::Apis::DfareportingV4::FeedSchedule]
6007
+ attr_accessor :feed_schedule
6008
+
6009
+ # Output only. Indicates whether the dynamic feed has a published version. This
6010
+ # is a read-only field.
6011
+ # Corresponds to the JSON property `hasPublished`
6012
+ # @return [Boolean]
6013
+ attr_accessor :has_published
6014
+ alias_method :has_published?, :has_published
6015
+
6016
+ # Modification timestamp.
6017
+ # Corresponds to the JSON property `lastModifiedInfo`
6018
+ # @return [Google::Apis::DfareportingV4::LastModifiedInfo]
6019
+ attr_accessor :last_modified_info
6020
+
6021
+ # Output only. The status of the feed. It is a read-only field that depends on
6022
+ # the the feed ingestion status. The default value is INACTIVE, and it will be
6023
+ # updated to ACTIVE once the feed is ingested successfully.
6024
+ # Corresponds to the JSON property `status`
6025
+ # @return [String]
6026
+ attr_accessor :status
6027
+
6028
+ # Required. Advertiser ID of this dynamic feed. This is a required field.
6029
+ # Corresponds to the JSON property `studioAdvertiserId`
6030
+ # @return [Fixnum]
6031
+ attr_accessor :studio_advertiser_id
6032
+
6033
+ def initialize(**args)
6034
+ update!(**args)
6035
+ end
6036
+
6037
+ # Update properties of this object
6038
+ def update!(**args)
6039
+ @content_source = args[:content_source] if args.key?(:content_source)
6040
+ @create_info = args[:create_info] if args.key?(:create_info)
6041
+ @dynamic_feed_id = args[:dynamic_feed_id] if args.key?(:dynamic_feed_id)
6042
+ @dynamic_feed_name = args[:dynamic_feed_name] if args.key?(:dynamic_feed_name)
6043
+ @element = args[:element] if args.key?(:element)
6044
+ @feed_ingestion_status = args[:feed_ingestion_status] if args.key?(:feed_ingestion_status)
6045
+ @feed_schedule = args[:feed_schedule] if args.key?(:feed_schedule)
6046
+ @has_published = args[:has_published] if args.key?(:has_published)
6047
+ @last_modified_info = args[:last_modified_info] if args.key?(:last_modified_info)
6048
+ @status = args[:status] if args.key?(:status)
6049
+ @studio_advertiser_id = args[:studio_advertiser_id] if args.key?(:studio_advertiser_id)
6050
+ end
6051
+ end
6052
+
6053
+ # Dynamic profile ID is required for dynamic feed insert as the current GPA API
6054
+ # only can create a dynamic feed under profile context,even though the dynnamic
6055
+ # feed itself don't need the dynamic profile id. See go/cm3-dco-display-api-
6056
+ # interface
6057
+ class DynamicFeedsInsertRequest
6058
+ include Google::Apis::Core::Hashable
6059
+
6060
+ # Contains dynamic feed information.
6061
+ # Corresponds to the JSON property `dynamicFeed`
6062
+ # @return [Google::Apis::DfareportingV4::DynamicFeed]
6063
+ attr_accessor :dynamic_feed
6064
+
6065
+ # Required. Dynamic profile ID of the inserted dynamic feed.
6066
+ # Corresponds to the JSON property `dynamicProfileId`
6067
+ # @return [Fixnum]
6068
+ attr_accessor :dynamic_profile_id
6069
+
6070
+ def initialize(**args)
6071
+ update!(**args)
6072
+ end
6073
+
6074
+ # Update properties of this object
6075
+ def update!(**args)
6076
+ @dynamic_feed = args[:dynamic_feed] if args.key?(:dynamic_feed)
6077
+ @dynamic_profile_id = args[:dynamic_profile_id] if args.key?(:dynamic_profile_id)
6078
+ end
6079
+ end
6080
+
6081
+ # Contains dynamic profile information.
6082
+ class DynamicProfile
6083
+ include Google::Apis::Core::Hashable
6084
+
6085
+ # Contains dynamic profile version information.
6086
+ # Corresponds to the JSON property `active`
6087
+ # @return [Google::Apis::DfareportingV4::DynamicProfileVersion]
6088
+ attr_accessor :active
6089
+
6090
+ # Optional. Archive status of this dynamic profile.
6091
+ # Corresponds to the JSON property `archiveStatus`
6092
+ # @return [String]
6093
+ attr_accessor :archive_status
6094
+
6095
+ # Modification timestamp.
6096
+ # Corresponds to the JSON property `createInfo`
6097
+ # @return [Google::Apis::DfareportingV4::LastModifiedInfo]
6098
+ attr_accessor :create_info
6099
+
6100
+ # Optional. Description of this dynamic profile.
6101
+ # Corresponds to the JSON property `description`
6102
+ # @return [String]
6103
+ attr_accessor :description
6104
+
6105
+ # Contains dynamic profile version information.
6106
+ # Corresponds to the JSON property `draft`
6107
+ # @return [Google::Apis::DfareportingV4::DynamicProfileVersion]
6108
+ attr_accessor :draft
6109
+
6110
+ # Output only. Unique ID of this dynamic profile. This is a read-only, auto-
6111
+ # generated field.
6112
+ # Corresponds to the JSON property `dynamicProfileId`
6113
+ # @return [Fixnum]
6114
+ attr_accessor :dynamic_profile_id
6115
+
6116
+ # Output only. Identifies what kind of resource this is. Value: the fixed string
6117
+ # "dfareporting#dynamicProfile".
6118
+ # Corresponds to the JSON property `kind`
6119
+ # @return [String]
6120
+ attr_accessor :kind
6121
+
6122
+ # Modification timestamp.
6123
+ # Corresponds to the JSON property `lastModifiedInfo`
6124
+ # @return [Google::Apis::DfareportingV4::LastModifiedInfo]
6125
+ attr_accessor :last_modified_info
6126
+
6127
+ # Required. Identifier. Name of this dynamic profile. This is a required field
6128
+ # and must be less than 256 characters long.
6129
+ # Corresponds to the JSON property `name`
6130
+ # @return [String]
6131
+ attr_accessor :name
6132
+
6133
+ # Optional. Status of this dynamic profile.
6134
+ # Corresponds to the JSON property `status`
6135
+ # @return [String]
6136
+ attr_accessor :status
6137
+
6138
+ # Required. Advertiser ID of this dynamic profile. This is a required field on
6139
+ # insertion.
6140
+ # Corresponds to the JSON property `studioAdvertiserId`
6141
+ # @return [Fixnum]
6142
+ attr_accessor :studio_advertiser_id
6143
+
6144
+ def initialize(**args)
6145
+ update!(**args)
6146
+ end
6147
+
6148
+ # Update properties of this object
6149
+ def update!(**args)
6150
+ @active = args[:active] if args.key?(:active)
6151
+ @archive_status = args[:archive_status] if args.key?(:archive_status)
6152
+ @create_info = args[:create_info] if args.key?(:create_info)
6153
+ @description = args[:description] if args.key?(:description)
6154
+ @draft = args[:draft] if args.key?(:draft)
6155
+ @dynamic_profile_id = args[:dynamic_profile_id] if args.key?(:dynamic_profile_id)
6156
+ @kind = args[:kind] if args.key?(:kind)
6157
+ @last_modified_info = args[:last_modified_info] if args.key?(:last_modified_info)
6158
+ @name = args[:name] if args.key?(:name)
6159
+ @status = args[:status] if args.key?(:status)
6160
+ @studio_advertiser_id = args[:studio_advertiser_id] if args.key?(:studio_advertiser_id)
6161
+ end
6162
+ end
6163
+
6164
+ # Contains dynamic profile specific settings for an associated dynamic feed.
6165
+ class DynamicProfileFeedSettings
6166
+ include Google::Apis::Core::Hashable
6167
+
6168
+ # Optional. Dynamic feed ID associated with dynamic profile version.
6169
+ # Corresponds to the JSON property `dynamicFeedId`
6170
+ # @return [Fixnum]
6171
+ attr_accessor :dynamic_feed_id
6172
+
6173
+ # Contains dynamic rules information.
6174
+ # Corresponds to the JSON property `dynamicRules`
6175
+ # @return [Google::Apis::DfareportingV4::DynamicRules]
6176
+ attr_accessor :dynamic_rules
6177
+
6178
+ # Optional. The number of this dynamic feed rows needed by the dynamic profile,
6179
+ # default value is 1. Acceptable values are between 1 to 99, inclusive.
6180
+ # Corresponds to the JSON property `quantity`
6181
+ # @return [Fixnum]
6182
+ attr_accessor :quantity
6183
+
6184
+ def initialize(**args)
6185
+ update!(**args)
6186
+ end
6187
+
6188
+ # Update properties of this object
6189
+ def update!(**args)
6190
+ @dynamic_feed_id = args[:dynamic_feed_id] if args.key?(:dynamic_feed_id)
6191
+ @dynamic_rules = args[:dynamic_rules] if args.key?(:dynamic_rules)
6192
+ @quantity = args[:quantity] if args.key?(:quantity)
6193
+ end
6194
+ end
6195
+
6196
+ # Contains dynamic profile version information.
6197
+ class DynamicProfileVersion
6198
+ include Google::Apis::Core::Hashable
6199
+
6200
+ # Optional. Associated dynamic feeds and their settings (including dynamic rules)
6201
+ # for this dynamic profile version.
6202
+ # Corresponds to the JSON property `dynamicProfileFeedSettings`
6203
+ # @return [Array<Google::Apis::DfareportingV4::DynamicProfileFeedSettings>]
6204
+ attr_accessor :dynamic_profile_feed_settings
6205
+
6206
+ # Output only. Version ID of this dynamic profile version. This is a read-only,
6207
+ # auto-generated field. -1 for draft version, 0+ for published versions.
6208
+ # Corresponds to the JSON property `versionId`
6209
+ # @return [Fixnum]
6210
+ attr_accessor :version_id
6211
+
6212
+ def initialize(**args)
6213
+ update!(**args)
6214
+ end
6215
+
6216
+ # Update properties of this object
6217
+ def update!(**args)
6218
+ @dynamic_profile_feed_settings = args[:dynamic_profile_feed_settings] if args.key?(:dynamic_profile_feed_settings)
6219
+ @version_id = args[:version_id] if args.key?(:version_id)
6220
+ end
6221
+ end
6222
+
6223
+ # Contains dynamic rules information.
6224
+ class DynamicRules
6225
+ include Google::Apis::Core::Hashable
6226
+
6227
+ # Optional. List of field IDs in this element that should be auto-targeted.
6228
+ # Applicable when rule type is AUTO.
6229
+ # Corresponds to the JSON property `autoTargetedFieldIds`
6230
+ # @return [Array<Fixnum>]
6231
+ attr_accessor :auto_targeted_field_ids
6232
+
6233
+ # Optional. The custom rules of the dynamic feed, only applicable when rule type
6234
+ # is CUSTOM.
6235
+ # Corresponds to the JSON property `customRules`
6236
+ # @return [Array<Google::Apis::DfareportingV4::CustomRule>]
6237
+ attr_accessor :custom_rules
6238
+
6239
+ # Optional. Mapping between field ID and custom key that are used to match for
6240
+ # auto filtering.
6241
+ # Corresponds to the JSON property `customValueFields`
6242
+ # @return [Array<Google::Apis::DfareportingV4::CustomValueField>]
6243
+ attr_accessor :custom_value_fields
6244
+
6245
+ # Contains proximity filter information.
6246
+ # Corresponds to the JSON property `proximityFilter`
6247
+ # @return [Google::Apis::DfareportingV4::ProximityFilter]
6248
+ attr_accessor :proximity_filter
6249
+
6250
+ # Optional. The link between an element field ID and a list of user attribute
6251
+ # IDs.
6252
+ # Corresponds to the JSON property `remarketingValueAttributes`
6253
+ # @return [Array<Google::Apis::DfareportingV4::RemarketingValueAttribute>]
6254
+ attr_accessor :remarketing_value_attributes
6255
+
6256
+ # Optional. The rotation type to select from eligible rows. Rotation type only
6257
+ # apply when the filtering rule results in more than one eligible rows.
6258
+ # Corresponds to the JSON property `rotationType`
6259
+ # @return [String]
6260
+ attr_accessor :rotation_type
6261
+
6262
+ # Optional. The type of the rule, the default value is OPEN.
6263
+ # Corresponds to the JSON property `ruleType`
6264
+ # @return [String]
6265
+ attr_accessor :rule_type
6266
+
6267
+ # Optional. The field ID for the feed that will be used for weighted rotation,
6268
+ # only applicable when rotation type is WEIGHTED.
6269
+ # Corresponds to the JSON property `weightFieldId`
6270
+ # @return [Fixnum]
6271
+ attr_accessor :weight_field_id
6272
+
6273
+ def initialize(**args)
6274
+ update!(**args)
6275
+ end
6276
+
6277
+ # Update properties of this object
6278
+ def update!(**args)
6279
+ @auto_targeted_field_ids = args[:auto_targeted_field_ids] if args.key?(:auto_targeted_field_ids)
6280
+ @custom_rules = args[:custom_rules] if args.key?(:custom_rules)
6281
+ @custom_value_fields = args[:custom_value_fields] if args.key?(:custom_value_fields)
6282
+ @proximity_filter = args[:proximity_filter] if args.key?(:proximity_filter)
6283
+ @remarketing_value_attributes = args[:remarketing_value_attributes] if args.key?(:remarketing_value_attributes)
6284
+ @rotation_type = args[:rotation_type] if args.key?(:rotation_type)
6285
+ @rule_type = args[:rule_type] if args.key?(:rule_type)
6286
+ @weight_field_id = args[:weight_field_id] if args.key?(:weight_field_id)
6287
+ end
6288
+ end
6289
+
5795
6290
  # Contains properties of a dynamic targeting key. Dynamic targeting keys are
5796
6291
  # unique, user-friendly labels, created at the advertiser level in DCM, that can
5797
6292
  # be assigned to ads, creatives, and placements and used for targeting with
@@ -5828,29 +6323,114 @@ module Google
5828
6323
  update!(**args)
5829
6324
  end
5830
6325
 
5831
- # Update properties of this object
5832
- def update!(**args)
5833
- @kind = args[:kind] if args.key?(:kind)
5834
- @name = args[:name] if args.key?(:name)
5835
- @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop)
5836
- @object_type = args[:object_type] if args.key?(:object_type)
5837
- end
5838
- end
6326
+ # Update properties of this object
6327
+ def update!(**args)
6328
+ @kind = args[:kind] if args.key?(:kind)
6329
+ @name = args[:name] if args.key?(:name)
6330
+ @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop)
6331
+ @object_type = args[:object_type] if args.key?(:object_type)
6332
+ end
6333
+ end
6334
+
6335
+ # Dynamic Targeting Key List Response
6336
+ class DynamicTargetingKeysListResponse
6337
+ include Google::Apis::Core::Hashable
6338
+
6339
+ # Dynamic targeting key collection.
6340
+ # Corresponds to the JSON property `dynamicTargetingKeys`
6341
+ # @return [Array<Google::Apis::DfareportingV4::DynamicTargetingKey>]
6342
+ attr_accessor :dynamic_targeting_keys
6343
+
6344
+ # Identifies what kind of resource this is. Value: the fixed string "
6345
+ # dfareporting#dynamicTargetingKeysListResponse".
6346
+ # Corresponds to the JSON property `kind`
6347
+ # @return [String]
6348
+ attr_accessor :kind
6349
+
6350
+ def initialize(**args)
6351
+ update!(**args)
6352
+ end
6353
+
6354
+ # Update properties of this object
6355
+ def update!(**args)
6356
+ @dynamic_targeting_keys = args[:dynamic_targeting_keys] if args.key?(:dynamic_targeting_keys)
6357
+ @kind = args[:kind] if args.key?(:kind)
6358
+ end
6359
+ end
6360
+
6361
+ # Contains the element of the dynamic feed.
6362
+ class Element
6363
+ include Google::Apis::Core::Hashable
6364
+
6365
+ # Optional. The field ID to specify the active field in the feed.
6366
+ # Corresponds to the JSON property `activeFieldId`
6367
+ # @return [Fixnum]
6368
+ attr_accessor :active_field_id
6369
+
6370
+ # Modification timestamp.
6371
+ # Corresponds to the JSON property `createInfo`
6372
+ # @return [Google::Apis::DfareportingV4::LastModifiedInfo]
6373
+ attr_accessor :create_info
6374
+
6375
+ # Optional. The field ID to specify the field that represents the default field
6376
+ # in the feed.
6377
+ # Corresponds to the JSON property `defaultFieldId`
6378
+ # @return [Fixnum]
6379
+ attr_accessor :default_field_id
6380
+
6381
+ # Optional. The name of the element. It is defaulted to resource file name if
6382
+ # not provided.
6383
+ # Corresponds to the JSON property `elementName`
6384
+ # @return [String]
6385
+ attr_accessor :element_name
6386
+
6387
+ # Optional. The field ID to specify the field that represents the end timestamp.
6388
+ # Only applicable if you're planning to use scheduling in your dynamic creative.
6389
+ # Corresponds to the JSON property `endTimestampFieldId`
6390
+ # @return [Fixnum]
6391
+ attr_accessor :end_timestamp_field_id
6392
+
6393
+ # Required. The field ID to specify the field used for uniquely identifying the
6394
+ # feed row. This is a required field.
6395
+ # Corresponds to the JSON property `externalIdFieldId`
6396
+ # @return [Fixnum]
6397
+ attr_accessor :external_id_field_id
6398
+
6399
+ # Required. The list of fields of the element. The field order and name should
6400
+ # match the meta data in the content source source.
6401
+ # Corresponds to the JSON property `feedFields`
6402
+ # @return [Array<Google::Apis::DfareportingV4::FeedField>]
6403
+ attr_accessor :feed_fields
6404
+
6405
+ # Optional. Whether the start and end timestamp is local timestamp. The default
6406
+ # value is false which means start and end timestamp is in UTC.
6407
+ # Corresponds to the JSON property `isLocalTimestamp`
6408
+ # @return [Boolean]
6409
+ attr_accessor :is_local_timestamp
6410
+ alias_method :is_local_timestamp?, :is_local_timestamp
5839
6411
 
5840
- # Dynamic Targeting Key List Response
5841
- class DynamicTargetingKeysListResponse
5842
- include Google::Apis::Core::Hashable
6412
+ # Modification timestamp.
6413
+ # Corresponds to the JSON property `lastModifiedInfo`
6414
+ # @return [Google::Apis::DfareportingV4::LastModifiedInfo]
6415
+ attr_accessor :last_modified_info
5843
6416
 
5844
- # Dynamic targeting key collection.
5845
- # Corresponds to the JSON property `dynamicTargetingKeys`
5846
- # @return [Array<Google::Apis::DfareportingV4::DynamicTargetingKey>]
5847
- attr_accessor :dynamic_targeting_keys
6417
+ # Optional. The field ID that specify field used for proximity targeting.
6418
+ # Corresponds to the JSON property `proximityTargetingFieldId`
6419
+ # @return [Fixnum]
6420
+ attr_accessor :proximity_targeting_field_id
5848
6421
 
5849
- # Identifies what kind of resource this is. Value: the fixed string "
5850
- # dfareporting#dynamicTargetingKeysListResponse".
5851
- # Corresponds to the JSON property `kind`
5852
- # @return [String]
5853
- attr_accessor :kind
6422
+ # Required. The field ID to specify the field used for dynamic reporting in
6423
+ # Campaign Manager 360.
6424
+ # Corresponds to the JSON property `reportingLabelFieldId`
6425
+ # @return [Fixnum]
6426
+ attr_accessor :reporting_label_field_id
6427
+
6428
+ # Optional. The field ID to specify the field that represents the start
6429
+ # timestamp. Only applicable if you're planning to use scheduling in your
6430
+ # dynamic creative.
6431
+ # Corresponds to the JSON property `startTimestampFieldId`
6432
+ # @return [Fixnum]
6433
+ attr_accessor :start_timestamp_field_id
5854
6434
 
5855
6435
  def initialize(**args)
5856
6436
  update!(**args)
@@ -5858,8 +6438,18 @@ module Google
5858
6438
 
5859
6439
  # Update properties of this object
5860
6440
  def update!(**args)
5861
- @dynamic_targeting_keys = args[:dynamic_targeting_keys] if args.key?(:dynamic_targeting_keys)
5862
- @kind = args[:kind] if args.key?(:kind)
6441
+ @active_field_id = args[:active_field_id] if args.key?(:active_field_id)
6442
+ @create_info = args[:create_info] if args.key?(:create_info)
6443
+ @default_field_id = args[:default_field_id] if args.key?(:default_field_id)
6444
+ @element_name = args[:element_name] if args.key?(:element_name)
6445
+ @end_timestamp_field_id = args[:end_timestamp_field_id] if args.key?(:end_timestamp_field_id)
6446
+ @external_id_field_id = args[:external_id_field_id] if args.key?(:external_id_field_id)
6447
+ @feed_fields = args[:feed_fields] if args.key?(:feed_fields)
6448
+ @is_local_timestamp = args[:is_local_timestamp] if args.key?(:is_local_timestamp)
6449
+ @last_modified_info = args[:last_modified_info] if args.key?(:last_modified_info)
6450
+ @proximity_targeting_field_id = args[:proximity_targeting_field_id] if args.key?(:proximity_targeting_field_id)
6451
+ @reporting_label_field_id = args[:reporting_label_field_id] if args.key?(:reporting_label_field_id)
6452
+ @start_timestamp_field_id = args[:start_timestamp_field_id] if args.key?(:start_timestamp_field_id)
5863
6453
  end
5864
6454
  end
5865
6455
 
@@ -6098,6 +6688,262 @@ module Google
6098
6688
  end
6099
6689
  end
6100
6690
 
6691
+ # Each field of the element. This is a required field.
6692
+ class FeedField
6693
+ include Google::Apis::Core::Hashable
6694
+
6695
+ # Optional. The default value of the field.
6696
+ # Corresponds to the JSON property `defaultValue`
6697
+ # @return [String]
6698
+ attr_accessor :default_value
6699
+
6700
+ # Optional. Whether the field is filterable. Could be set as true when the field
6701
+ # type is any of the following and is not renderable: - STRING - BOOL -
6702
+ # COUNTRY_CODE_ISO - CM360_SITE_ID - CM360_KEYWORD - CM360_CREATIVE_ID -
6703
+ # CM360_PLACEMENT_ID - CM360_AD_ID - CM360_ADVERTISER_ID - CM360_CAMPAIGN_ID -
6704
+ # CITY - REGION - POSTAL_CODE - METRO - CUSTOM_VALUE - REMARKETING_VALUE -
6705
+ # GEO_CANONICAL - STRING_LIST - CREATIVE_DIMENSION - USERLIST_ID -
6706
+ # CM360_DYNAMIC_TARGETING_KEY - DV360_LINE_ITEM_ID
6707
+ # Corresponds to the JSON property `filterable`
6708
+ # @return [Boolean]
6709
+ attr_accessor :filterable
6710
+ alias_method :filterable?, :filterable
6711
+
6712
+ # Required. The ID of the field. The ID is based on the column index starting
6713
+ # from 0, and it should match the column index in the resource link.
6714
+ # Corresponds to the JSON property `id`
6715
+ # @return [Fixnum]
6716
+ attr_accessor :id
6717
+
6718
+ # Required. The name of the field.
6719
+ # Corresponds to the JSON property `name`
6720
+ # @return [String]
6721
+ attr_accessor :name
6722
+
6723
+ # Optional. Whether the field is able to display. Could be set as true when the
6724
+ # field type is not in any of the following and the field is not filterable: -
6725
+ # COUNTRY_CODE_ISO - CITY - REGION - POSTAL_CODE - METRO - GEO_CANONICAL -
6726
+ # USERLIST_ID - CONTEXTUAL_KEYWORD - CM360_DYNAMIC_TARGETING_KEY - WEIGHT
6727
+ # Corresponds to the JSON property `renderable`
6728
+ # @return [Boolean]
6729
+ attr_accessor :renderable
6730
+ alias_method :renderable?, :renderable
6731
+
6732
+ # Optional. Whether the field is required and should not be empty in the feed.
6733
+ # Could be set as true when the field type is any of the following: -
6734
+ # GPA_SERVED_IMAGE_URL - GPA_SERVED_ASSET_URL - ASSET_LIBRARY_HANDLE -
6735
+ # ASSET_LIBRARY_VIDEO_HANDLE - ASSET_LIBRARY_DIRECTORY_HANDLE
6736
+ # Corresponds to the JSON property `required`
6737
+ # @return [Boolean]
6738
+ attr_accessor :required
6739
+ alias_method :required?, :required
6740
+
6741
+ # Required. The type of the field.
6742
+ # Corresponds to the JSON property `type`
6743
+ # @return [String]
6744
+ attr_accessor :type
6745
+
6746
+ def initialize(**args)
6747
+ update!(**args)
6748
+ end
6749
+
6750
+ # Update properties of this object
6751
+ def update!(**args)
6752
+ @default_value = args[:default_value] if args.key?(:default_value)
6753
+ @filterable = args[:filterable] if args.key?(:filterable)
6754
+ @id = args[:id] if args.key?(:id)
6755
+ @name = args[:name] if args.key?(:name)
6756
+ @renderable = args[:renderable] if args.key?(:renderable)
6757
+ @required = args[:required] if args.key?(:required)
6758
+ @type = args[:type] if args.key?(:type)
6759
+ end
6760
+ end
6761
+
6762
+ # Contains the ingestion status of the dynamic feed. Feed ingestion is an
6763
+ # asynchronous process. If the feed create request is successful, feed ingestion
6764
+ # will be processed in the background, including validation, assets retrieval,
6765
+ # and saving the data from the resource link. The processing time is dependent
6766
+ # on the data size in the resource link. This read-only status field contains
6767
+ # the current stage of that processing and its ingestion state.
6768
+ class FeedIngestionStatus
6769
+ include Google::Apis::Core::Hashable
6770
+
6771
+ # Output only. The ingestion error records of the feed.
6772
+ # Corresponds to the JSON property `ingestionErrorRecords`
6773
+ # @return [Array<Google::Apis::DfareportingV4::IngestionErrorRecord>]
6774
+ attr_accessor :ingestion_error_records
6775
+
6776
+ # Contains the ingestion status of the dynamic feed.
6777
+ # Corresponds to the JSON property `ingestionStatus`
6778
+ # @return [Google::Apis::DfareportingV4::IngestionStatus]
6779
+ attr_accessor :ingestion_status
6780
+
6781
+ # Output only. The processing state of the feed.
6782
+ # Corresponds to the JSON property `state`
6783
+ # @return [String]
6784
+ attr_accessor :state
6785
+
6786
+ def initialize(**args)
6787
+ update!(**args)
6788
+ end
6789
+
6790
+ # Update properties of this object
6791
+ def update!(**args)
6792
+ @ingestion_error_records = args[:ingestion_error_records] if args.key?(:ingestion_error_records)
6793
+ @ingestion_status = args[:ingestion_status] if args.key?(:ingestion_status)
6794
+ @state = args[:state] if args.key?(:state)
6795
+ end
6796
+ end
6797
+
6798
+ # Contains the schedule of the dynamic feed.
6799
+ class FeedSchedule
6800
+ include Google::Apis::Core::Hashable
6801
+
6802
+ # Optional. The number of times the feed retransforms within one day. This is a
6803
+ # required field if the schedule is enabled. Acceptable values are between 1 to
6804
+ # 6, inclusive.
6805
+ # Corresponds to the JSON property `repeatValue`
6806
+ # @return [Fixnum]
6807
+ attr_accessor :repeat_value
6808
+
6809
+ # Optional. Whether the schedule is enabled.
6810
+ # Corresponds to the JSON property `scheduleEnabled`
6811
+ # @return [Boolean]
6812
+ attr_accessor :schedule_enabled
6813
+ alias_method :schedule_enabled?, :schedule_enabled
6814
+
6815
+ # Optional. The hour of the day to start the feed. It is applicable if the
6816
+ # repeat value is equal to 1. Default value is 0.
6817
+ # Corresponds to the JSON property `startHour`
6818
+ # @return [String]
6819
+ attr_accessor :start_hour
6820
+
6821
+ # Optional. The minute of the hour to start the feed. It is applicable if the
6822
+ # repeat value is equal to 1. Default value is 0.
6823
+ # Corresponds to the JSON property `startMinute`
6824
+ # @return [String]
6825
+ attr_accessor :start_minute
6826
+
6827
+ # Optional. The time zone to schedule the feed. It is applicable if the repeat
6828
+ # value is equal to 1. Default value is "America/Los_Angeles".
6829
+ # Corresponds to the JSON property `timeZone`
6830
+ # @return [String]
6831
+ attr_accessor :time_zone
6832
+
6833
+ def initialize(**args)
6834
+ update!(**args)
6835
+ end
6836
+
6837
+ # Update properties of this object
6838
+ def update!(**args)
6839
+ @repeat_value = args[:repeat_value] if args.key?(:repeat_value)
6840
+ @schedule_enabled = args[:schedule_enabled] if args.key?(:schedule_enabled)
6841
+ @start_hour = args[:start_hour] if args.key?(:start_hour)
6842
+ @start_minute = args[:start_minute] if args.key?(:start_minute)
6843
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
6844
+ end
6845
+ end
6846
+
6847
+ # Contains the field error of the dynamic feed.
6848
+ class FieldError
6849
+ include Google::Apis::Core::Hashable
6850
+
6851
+ # Output only. The ID of the field.
6852
+ # Corresponds to the JSON property `fieldId`
6853
+ # @return [Fixnum]
6854
+ attr_accessor :field_id
6855
+
6856
+ # Output only. The name of the field.
6857
+ # Corresponds to the JSON property `fieldName`
6858
+ # @return [String]
6859
+ attr_accessor :field_name
6860
+
6861
+ # Output only. The list of values of the field.
6862
+ # Corresponds to the JSON property `fieldValues`
6863
+ # @return [Array<String>]
6864
+ attr_accessor :field_values
6865
+
6866
+ # Output only. The ingestion error of the field.
6867
+ # Corresponds to the JSON property `ingestionError`
6868
+ # @return [String]
6869
+ attr_accessor :ingestion_error
6870
+
6871
+ # Output only. Incidcates whether the field has error or warning.
6872
+ # Corresponds to the JSON property `isError`
6873
+ # @return [Boolean]
6874
+ attr_accessor :is_error
6875
+ alias_method :is_error?, :is_error
6876
+
6877
+ def initialize(**args)
6878
+ update!(**args)
6879
+ end
6880
+
6881
+ # Update properties of this object
6882
+ def update!(**args)
6883
+ @field_id = args[:field_id] if args.key?(:field_id)
6884
+ @field_name = args[:field_name] if args.key?(:field_name)
6885
+ @field_values = args[:field_values] if args.key?(:field_values)
6886
+ @ingestion_error = args[:ingestion_error] if args.key?(:ingestion_error)
6887
+ @is_error = args[:is_error] if args.key?(:is_error)
6888
+ end
6889
+ end
6890
+
6891
+ # Contains field filter information.
6892
+ class FieldFilter
6893
+ include Google::Apis::Core::Hashable
6894
+
6895
+ # Optional. The boolean values, only applicable when rhs_value_type is BOOL.
6896
+ # Corresponds to the JSON property `boolValue`
6897
+ # @return [Boolean]
6898
+ attr_accessor :bool_value
6899
+ alias_method :bool_value?, :bool_value
6900
+
6901
+ # Contains dependent field value information.
6902
+ # Corresponds to the JSON property `dependentFieldValue`
6903
+ # @return [Google::Apis::DfareportingV4::DependentFieldValue]
6904
+ attr_accessor :dependent_field_value
6905
+
6906
+ # Optional. The field ID on the left hand side of the expression.
6907
+ # Corresponds to the JSON property `fieldId`
6908
+ # @return [Fixnum]
6909
+ attr_accessor :field_id
6910
+
6911
+ # Optional. Left hand side of the expression match type.
6912
+ # Corresponds to the JSON property `matchType`
6913
+ # @return [String]
6914
+ attr_accessor :match_type
6915
+
6916
+ # Contains request value information.
6917
+ # Corresponds to the JSON property `requestValue`
6918
+ # @return [Google::Apis::DfareportingV4::RequestValue]
6919
+ attr_accessor :request_value
6920
+
6921
+ # Optional. The string value, only applicable when rhs_value_type is STRING.
6922
+ # Corresponds to the JSON property `stringValue`
6923
+ # @return [String]
6924
+ attr_accessor :string_value
6925
+
6926
+ # Optional. Right hand side of the expression.
6927
+ # Corresponds to the JSON property `valueType`
6928
+ # @return [String]
6929
+ attr_accessor :value_type
6930
+
6931
+ def initialize(**args)
6932
+ update!(**args)
6933
+ end
6934
+
6935
+ # Update properties of this object
6936
+ def update!(**args)
6937
+ @bool_value = args[:bool_value] if args.key?(:bool_value)
6938
+ @dependent_field_value = args[:dependent_field_value] if args.key?(:dependent_field_value)
6939
+ @field_id = args[:field_id] if args.key?(:field_id)
6940
+ @match_type = args[:match_type] if args.key?(:match_type)
6941
+ @request_value = args[:request_value] if args.key?(:request_value)
6942
+ @string_value = args[:string_value] if args.key?(:string_value)
6943
+ @value_type = args[:value_type] if args.key?(:value_type)
6944
+ end
6945
+ end
6946
+
6101
6947
  # Represents a File resource. A file contains the metadata for a report run. It
6102
6948
  # shows the status of the run and holds the URLs to the generated report data if
6103
6949
  # the run is finished and the status is "REPORT_AVAILABLE".
@@ -7113,6 +7959,75 @@ module Google
7113
7959
  end
7114
7960
  end
7115
7961
 
7962
+ # Contains the ingestion error record of the dynamic feed. limited to 100
7963
+ # records.
7964
+ class IngestionErrorRecord
7965
+ include Google::Apis::Core::Hashable
7966
+
7967
+ # Output only. The list of field errors of the ingestion error record.
7968
+ # Corresponds to the JSON property `errors`
7969
+ # @return [Array<Google::Apis::DfareportingV4::FieldError>]
7970
+ attr_accessor :errors
7971
+
7972
+ # Output only. The record ID of the ingestion error record.
7973
+ # Corresponds to the JSON property `recordId`
7974
+ # @return [String]
7975
+ attr_accessor :record_id
7976
+
7977
+ def initialize(**args)
7978
+ update!(**args)
7979
+ end
7980
+
7981
+ # Update properties of this object
7982
+ def update!(**args)
7983
+ @errors = args[:errors] if args.key?(:errors)
7984
+ @record_id = args[:record_id] if args.key?(:record_id)
7985
+ end
7986
+ end
7987
+
7988
+ # Contains the ingestion status of the dynamic feed.
7989
+ class IngestionStatus
7990
+ include Google::Apis::Core::Hashable
7991
+
7992
+ # Output only. The number of active rows in the feed.
7993
+ # Corresponds to the JSON property `numActiveRows`
7994
+ # @return [Fixnum]
7995
+ attr_accessor :num_active_rows
7996
+
7997
+ # Output only. The number of rows processed in the feed.
7998
+ # Corresponds to the JSON property `numRowsProcessed`
7999
+ # @return [Fixnum]
8000
+ attr_accessor :num_rows_processed
8001
+
8002
+ # Output only. The total number of rows in the feed.
8003
+ # Corresponds to the JSON property `numRowsTotal`
8004
+ # @return [Fixnum]
8005
+ attr_accessor :num_rows_total
8006
+
8007
+ # Output only. The number of rows with errors in the feed.
8008
+ # Corresponds to the JSON property `numRowsWithErrors`
8009
+ # @return [Fixnum]
8010
+ attr_accessor :num_rows_with_errors
8011
+
8012
+ # Output only. The total number of warnings in the feed.
8013
+ # Corresponds to the JSON property `numWarningsTotal`
8014
+ # @return [Fixnum]
8015
+ attr_accessor :num_warnings_total
8016
+
8017
+ def initialize(**args)
8018
+ update!(**args)
8019
+ end
8020
+
8021
+ # Update properties of this object
8022
+ def update!(**args)
8023
+ @num_active_rows = args[:num_active_rows] if args.key?(:num_active_rows)
8024
+ @num_rows_processed = args[:num_rows_processed] if args.key?(:num_rows_processed)
8025
+ @num_rows_total = args[:num_rows_total] if args.key?(:num_rows_total)
8026
+ @num_rows_with_errors = args[:num_rows_with_errors] if args.key?(:num_rows_with_errors)
8027
+ @num_warnings_total = args[:num_warnings_total] if args.key?(:num_warnings_total)
8028
+ end
8029
+ end
8030
+
7116
8031
  # Represents a buy from the Planning inventory store.
7117
8032
  class InventoryItem
7118
8033
  include Google::Apis::Core::Hashable
@@ -10141,6 +11056,43 @@ module Google
10141
11056
  end
10142
11057
  end
10143
11058
 
11059
+ # Contains proximity filter information.
11060
+ class ProximityFilter
11061
+ include Google::Apis::Core::Hashable
11062
+
11063
+ # Optional. Field ID in the element.
11064
+ # Corresponds to the JSON property `fieldId`
11065
+ # @return [Fixnum]
11066
+ attr_accessor :field_id
11067
+
11068
+ # Optional. The radius bucket type of the proximity filter
11069
+ # Corresponds to the JSON property `radiusBucketType`
11070
+ # @return [String]
11071
+ attr_accessor :radius_bucket_type
11072
+
11073
+ # Optional. The units of the radius value
11074
+ # Corresponds to the JSON property `radiusUnitType`
11075
+ # @return [String]
11076
+ attr_accessor :radius_unit_type
11077
+
11078
+ # Optional. Radius length in units defined by radius_units.
11079
+ # Corresponds to the JSON property `radiusValue`
11080
+ # @return [Fixnum]
11081
+ attr_accessor :radius_value
11082
+
11083
+ def initialize(**args)
11084
+ update!(**args)
11085
+ end
11086
+
11087
+ # Update properties of this object
11088
+ def update!(**args)
11089
+ @field_id = args[:field_id] if args.key?(:field_id)
11090
+ @radius_bucket_type = args[:radius_bucket_type] if args.key?(:radius_bucket_type)
11091
+ @radius_unit_type = args[:radius_unit_type] if args.key?(:radius_unit_type)
11092
+ @radius_value = args[:radius_value] if args.key?(:radius_value)
11093
+ end
11094
+ end
11095
+
10144
11096
  # Represents fields that are compatible to be selected for a report of type "
10145
11097
  # REACH".
10146
11098
  class ReachReportCompatibleFields
@@ -10480,6 +11432,31 @@ module Google
10480
11432
  end
10481
11433
  end
10482
11434
 
11435
+ # Contains remarketing value attribute information.
11436
+ class RemarketingValueAttribute
11437
+ include Google::Apis::Core::Hashable
11438
+
11439
+ # Optional. Field ID in the element.
11440
+ # Corresponds to the JSON property `fieldId`
11441
+ # @return [Fixnum]
11442
+ attr_accessor :field_id
11443
+
11444
+ # Optional. Remarketing user attribute IDs for auto filtering.
11445
+ # Corresponds to the JSON property `userAttributeIds`
11446
+ # @return [Array<Fixnum>]
11447
+ attr_accessor :user_attribute_ids
11448
+
11449
+ def initialize(**args)
11450
+ update!(**args)
11451
+ end
11452
+
11453
+ # Update properties of this object
11454
+ def update!(**args)
11455
+ @field_id = args[:field_id] if args.key?(:field_id)
11456
+ @user_attribute_ids = args[:user_attribute_ids] if args.key?(:user_attribute_ids)
11457
+ end
11458
+ end
11459
+
10483
11460
  # Represents a Report resource.
10484
11461
  class Report
10485
11462
  include Google::Apis::Core::Hashable
@@ -11317,6 +12294,40 @@ module Google
11317
12294
  end
11318
12295
  end
11319
12296
 
12297
+ # Contains request value information.
12298
+ class RequestValue
12299
+ include Google::Apis::Core::Hashable
12300
+
12301
+ # Optional. User attribute IDs in the request that should be excluded. Used only
12302
+ # when the field type is REMARKETING_VALUE or USER_ATTRIBUTE_ID.
12303
+ # Corresponds to the JSON property `excludeFromUserAttributeIds`
12304
+ # @return [Array<Fixnum>]
12305
+ attr_accessor :exclude_from_user_attribute_ids
12306
+
12307
+ # Optional. Custom key in the request. Used only when the field type is
12308
+ # CUSTOM_VALUE.
12309
+ # Corresponds to the JSON property `key`
12310
+ # @return [String]
12311
+ attr_accessor :key
12312
+
12313
+ # Optional. User attribute IDs in the request. Used only when the field type is
12314
+ # REMARKETING_VALUE or USER_ATTRIBUTE_ID.
12315
+ # Corresponds to the JSON property `userAttributeIds`
12316
+ # @return [Array<Fixnum>]
12317
+ attr_accessor :user_attribute_ids
12318
+
12319
+ def initialize(**args)
12320
+ update!(**args)
12321
+ end
12322
+
12323
+ # Update properties of this object
12324
+ def update!(**args)
12325
+ @exclude_from_user_attribute_ids = args[:exclude_from_user_attribute_ids] if args.key?(:exclude_from_user_attribute_ids)
12326
+ @key = args[:key] if args.key?(:key)
12327
+ @user_attribute_ids = args[:user_attribute_ids] if args.key?(:user_attribute_ids)
12328
+ end
12329
+ end
12330
+
11320
12331
  # Rich Media Exit Override.
11321
12332
  class RichMediaExitOverride
11322
12333
  include Google::Apis::Core::Hashable
@@ -11385,6 +12396,25 @@ module Google
11385
12396
  end
11386
12397
  end
11387
12398
 
12399
+ # Contains a list of field filters that the given custom rule will apply.
12400
+ class RuleBlock
12401
+ include Google::Apis::Core::Hashable
12402
+
12403
+ # Optional. A list of non-auto field filters
12404
+ # Corresponds to the JSON property `fieldFilter`
12405
+ # @return [Array<Google::Apis::DfareportingV4::FieldFilter>]
12406
+ attr_accessor :field_filter
12407
+
12408
+ def initialize(**args)
12409
+ update!(**args)
12410
+ end
12411
+
12412
+ # Update properties of this object
12413
+ def update!(**args)
12414
+ @field_filter = args[:field_filter] if args.key?(:field_filter)
12415
+ end
12416
+ end
12417
+
11388
12418
  # Contains properties of a site.
11389
12419
  class Site
11390
12420
  include Google::Apis::Core::Hashable