google-apis-displayvideo_v2 0.42.0 → 0.43.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.
@@ -144,11 +144,6 @@ module Google
|
|
144
144
|
# @return [Fixnum]
|
145
145
|
attr_accessor :advertiser_id
|
146
146
|
|
147
|
-
# Billing related settings of an advertiser.
|
148
|
-
# Corresponds to the JSON property `billingConfig`
|
149
|
-
# @return [Google::Apis::DisplayvideoV2::AdvertiserBillingConfig]
|
150
|
-
attr_accessor :billing_config
|
151
|
-
|
152
147
|
# Creatives related settings of an advertiser.
|
153
148
|
# Corresponds to the JSON property `creativeConfig`
|
154
149
|
# @return [Google::Apis::DisplayvideoV2::AdvertiserCreativeConfig]
|
@@ -225,7 +220,6 @@ module Google
|
|
225
220
|
def update!(**args)
|
226
221
|
@ad_server_config = args[:ad_server_config] if args.key?(:ad_server_config)
|
227
222
|
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
228
|
-
@billing_config = args[:billing_config] if args.key?(:billing_config)
|
229
223
|
@creative_config = args[:creative_config] if args.key?(:creative_config)
|
230
224
|
@data_access_config = args[:data_access_config] if args.key?(:data_access_config)
|
231
225
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -266,25 +260,6 @@ module Google
|
|
266
260
|
end
|
267
261
|
end
|
268
262
|
|
269
|
-
# Billing related settings of an advertiser.
|
270
|
-
class AdvertiserBillingConfig
|
271
|
-
include Google::Apis::Core::Hashable
|
272
|
-
|
273
|
-
# Required. The ID of a billing profile assigned to the advertiser.
|
274
|
-
# Corresponds to the JSON property `billingProfileId`
|
275
|
-
# @return [Fixnum]
|
276
|
-
attr_accessor :billing_profile_id
|
277
|
-
|
278
|
-
def initialize(**args)
|
279
|
-
update!(**args)
|
280
|
-
end
|
281
|
-
|
282
|
-
# Update properties of this object
|
283
|
-
def update!(**args)
|
284
|
-
@billing_profile_id = args[:billing_profile_id] if args.key?(:billing_profile_id)
|
285
|
-
end
|
286
|
-
end
|
287
|
-
|
288
263
|
# Creatives related settings of an advertiser.
|
289
264
|
class AdvertiserCreativeConfig
|
290
265
|
include Google::Apis::Core::Hashable
|
@@ -650,7 +625,7 @@ module Google
|
|
650
625
|
# @return [Google::Apis::DisplayvideoV2::Asset]
|
651
626
|
attr_accessor :asset
|
652
627
|
|
653
|
-
# The role of this asset for the creative.
|
628
|
+
# Optional. The role of this asset for the creative.
|
654
629
|
# Corresponds to the JSON property `role`
|
655
630
|
# @return [String]
|
656
631
|
attr_accessor :role
|
@@ -1237,12 +1212,6 @@ module Google
|
|
1237
1212
|
class AudienceGroupAssignedTargetingOptionDetails
|
1238
1213
|
include Google::Apis::Core::Hashable
|
1239
1214
|
|
1240
|
-
# Details of first and third party audience group. All first and third party
|
1241
|
-
# audience targeting settings are logically ‘OR’ of each other.
|
1242
|
-
# Corresponds to the JSON property `excludedFirstAndThirdPartyAudienceGroup`
|
1243
|
-
# @return [Google::Apis::DisplayvideoV2::FirstAndThirdPartyAudienceGroup]
|
1244
|
-
attr_accessor :excluded_first_and_third_party_audience_group
|
1245
|
-
|
1246
1215
|
# Details of Google audience group. All Google audience targeting settings are
|
1247
1216
|
# logically ‘OR’ of each other.
|
1248
1217
|
# Corresponds to the JSON property `excludedGoogleAudienceGroup`
|
@@ -1261,16 +1230,6 @@ module Google
|
|
1261
1230
|
# @return [Google::Apis::DisplayvideoV2::CustomListGroup]
|
1262
1231
|
attr_accessor :included_custom_list_group
|
1263
1232
|
|
1264
|
-
# The first and third party audience ids and recencies of included first and
|
1265
|
-
# third party audience groups. Each first and third party audience group
|
1266
|
-
# contains first and third party audience ids only. The relation between each
|
1267
|
-
# first and third party audience group is INTERSECTION, and the result is UNION'
|
1268
|
-
# ed with other audience groups. Repeated groups with same settings will be
|
1269
|
-
# ignored.
|
1270
|
-
# Corresponds to the JSON property `includedFirstAndThirdPartyAudienceGroups`
|
1271
|
-
# @return [Array<Google::Apis::DisplayvideoV2::FirstAndThirdPartyAudienceGroup>]
|
1272
|
-
attr_accessor :included_first_and_third_party_audience_groups
|
1273
|
-
|
1274
1233
|
# Details of Google audience group. All Google audience targeting settings are
|
1275
1234
|
# logically ‘OR’ of each other.
|
1276
1235
|
# Corresponds to the JSON property `includedGoogleAudienceGroup`
|
@@ -1283,11 +1242,9 @@ module Google
|
|
1283
1242
|
|
1284
1243
|
# Update properties of this object
|
1285
1244
|
def update!(**args)
|
1286
|
-
@excluded_first_and_third_party_audience_group = args[:excluded_first_and_third_party_audience_group] if args.key?(:excluded_first_and_third_party_audience_group)
|
1287
1245
|
@excluded_google_audience_group = args[:excluded_google_audience_group] if args.key?(:excluded_google_audience_group)
|
1288
1246
|
@included_combined_audience_group = args[:included_combined_audience_group] if args.key?(:included_combined_audience_group)
|
1289
1247
|
@included_custom_list_group = args[:included_custom_list_group] if args.key?(:included_custom_list_group)
|
1290
|
-
@included_first_and_third_party_audience_groups = args[:included_first_and_third_party_audience_groups] if args.key?(:included_first_and_third_party_audience_groups)
|
1291
1248
|
@included_google_audience_group = args[:included_google_audience_group] if args.key?(:included_google_audience_group)
|
1292
1249
|
end
|
1293
1250
|
end
|
@@ -1377,12 +1334,12 @@ module Google
|
|
1377
1334
|
class AudioVideoOffset
|
1378
1335
|
include Google::Apis::Core::Hashable
|
1379
1336
|
|
1380
|
-
# The offset in percentage of the audio or video duration.
|
1337
|
+
# Optional. The offset in percentage of the audio or video duration.
|
1381
1338
|
# Corresponds to the JSON property `percentage`
|
1382
1339
|
# @return [Fixnum]
|
1383
1340
|
attr_accessor :percentage
|
1384
1341
|
|
1385
|
-
# The offset in seconds from the start of the audio or video.
|
1342
|
+
# Optional. The offset in seconds from the start of the audio or video.
|
1386
1343
|
# Corresponds to the JSON property `seconds`
|
1387
1344
|
# @return [Fixnum]
|
1388
1345
|
attr_accessor :seconds
|
@@ -2235,64 +2192,6 @@ module Google
|
|
2235
2192
|
end
|
2236
2193
|
end
|
2237
2194
|
|
2238
|
-
#
|
2239
|
-
class BulkListCampaignAssignedTargetingOptionsResponse
|
2240
|
-
include Google::Apis::Core::Hashable
|
2241
|
-
|
2242
|
-
# The list of assigned targeting options. This list will be absent if empty.
|
2243
|
-
# Corresponds to the JSON property `assignedTargetingOptions`
|
2244
|
-
# @return [Array<Google::Apis::DisplayvideoV2::AssignedTargetingOption>]
|
2245
|
-
attr_accessor :assigned_targeting_options
|
2246
|
-
|
2247
|
-
# A token identifying the next page of results. This value should be specified
|
2248
|
-
# as the pageToken in a subsequent
|
2249
|
-
# BulkListCampaignAssignedTargetingOptionsRequest to fetch the next page of
|
2250
|
-
# results. This token will be absent if there are no more
|
2251
|
-
# assigned_targeting_options to return.
|
2252
|
-
# Corresponds to the JSON property `nextPageToken`
|
2253
|
-
# @return [String]
|
2254
|
-
attr_accessor :next_page_token
|
2255
|
-
|
2256
|
-
def initialize(**args)
|
2257
|
-
update!(**args)
|
2258
|
-
end
|
2259
|
-
|
2260
|
-
# Update properties of this object
|
2261
|
-
def update!(**args)
|
2262
|
-
@assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options)
|
2263
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2264
|
-
end
|
2265
|
-
end
|
2266
|
-
|
2267
|
-
#
|
2268
|
-
class BulkListInsertionOrderAssignedTargetingOptionsResponse
|
2269
|
-
include Google::Apis::Core::Hashable
|
2270
|
-
|
2271
|
-
# The list of assigned targeting options. This list will be absent if empty.
|
2272
|
-
# Corresponds to the JSON property `assignedTargetingOptions`
|
2273
|
-
# @return [Array<Google::Apis::DisplayvideoV2::AssignedTargetingOption>]
|
2274
|
-
attr_accessor :assigned_targeting_options
|
2275
|
-
|
2276
|
-
# A token identifying the next page of results. This value should be specified
|
2277
|
-
# as the pageToken in a subsequent
|
2278
|
-
# BulkListInsertionOrderAssignedTargetingOptionsRequest to fetch the next page
|
2279
|
-
# of results. This token will be absent if there are no more
|
2280
|
-
# assigned_targeting_options to return.
|
2281
|
-
# Corresponds to the JSON property `nextPageToken`
|
2282
|
-
# @return [String]
|
2283
|
-
attr_accessor :next_page_token
|
2284
|
-
|
2285
|
-
def initialize(**args)
|
2286
|
-
update!(**args)
|
2287
|
-
end
|
2288
|
-
|
2289
|
-
# Update properties of this object
|
2290
|
-
def update!(**args)
|
2291
|
-
@assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options)
|
2292
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2293
|
-
end
|
2294
|
-
end
|
2295
|
-
|
2296
2195
|
# Request message for LineItemService.BulkUpdateLineItems.
|
2297
2196
|
class BulkUpdateLineItemsRequest
|
2298
2197
|
include Google::Apis::Core::Hashable
|
@@ -2981,17 +2880,17 @@ module Google
|
|
2981
2880
|
class CmTrackingAd
|
2982
2881
|
include Google::Apis::Core::Hashable
|
2983
2882
|
|
2984
|
-
# The ad ID of the campaign manager 360 tracking Ad.
|
2883
|
+
# Optional. The ad ID of the campaign manager 360 tracking Ad.
|
2985
2884
|
# Corresponds to the JSON property `cmAdId`
|
2986
2885
|
# @return [Fixnum]
|
2987
2886
|
attr_accessor :cm_ad_id
|
2988
2887
|
|
2989
|
-
# The creative ID of the campaign manager 360 tracking Ad.
|
2888
|
+
# Optional. The creative ID of the campaign manager 360 tracking Ad.
|
2990
2889
|
# Corresponds to the JSON property `cmCreativeId`
|
2991
2890
|
# @return [Fixnum]
|
2992
2891
|
attr_accessor :cm_creative_id
|
2993
2892
|
|
2994
|
-
# The placement ID of the campaign manager 360 tracking Ad.
|
2893
|
+
# Optional. The placement ID of the campaign manager 360 tracking Ad.
|
2995
2894
|
# Corresponds to the JSON property `cmPlacementId`
|
2996
2895
|
# @return [Fixnum]
|
2997
2896
|
attr_accessor :cm_placement_id
|
@@ -3045,7 +2944,7 @@ module Google
|
|
3045
2944
|
include Google::Apis::Core::Hashable
|
3046
2945
|
|
3047
2946
|
# Required. All combined audience targeting settings in combined audience group.
|
3048
|
-
# Repeated settings with same id will be ignored. The number of combined
|
2947
|
+
# Repeated settings with the same id will be ignored. The number of combined
|
3049
2948
|
# audience settings should be no more than five, error will be thrown otherwise.
|
3050
2949
|
# Corresponds to the JSON property `settings`
|
3051
2950
|
# @return [Array<Google::Apis::DisplayvideoV2::CombinedAudienceTargetingSetting>]
|
@@ -3136,117 +3035,6 @@ module Google
|
|
3136
3035
|
end
|
3137
3036
|
end
|
3138
3037
|
|
3139
|
-
# User consent status.
|
3140
|
-
class Consent
|
3141
|
-
include Google::Apis::Core::Hashable
|
3142
|
-
|
3143
|
-
# Represents consent for ad personalization.
|
3144
|
-
# Corresponds to the JSON property `adPersonalization`
|
3145
|
-
# @return [String]
|
3146
|
-
attr_accessor :ad_personalization
|
3147
|
-
|
3148
|
-
# Represents consent for ad user data.
|
3149
|
-
# Corresponds to the JSON property `adUserData`
|
3150
|
-
# @return [String]
|
3151
|
-
attr_accessor :ad_user_data
|
3152
|
-
|
3153
|
-
def initialize(**args)
|
3154
|
-
update!(**args)
|
3155
|
-
end
|
3156
|
-
|
3157
|
-
# Update properties of this object
|
3158
|
-
def update!(**args)
|
3159
|
-
@ad_personalization = args[:ad_personalization] if args.key?(:ad_personalization)
|
3160
|
-
@ad_user_data = args[:ad_user_data] if args.key?(:ad_user_data)
|
3161
|
-
end
|
3162
|
-
end
|
3163
|
-
|
3164
|
-
# Contact information defining a Customer Match audience member.
|
3165
|
-
class ContactInfo
|
3166
|
-
include Google::Apis::Core::Hashable
|
3167
|
-
|
3168
|
-
# Country code of the member. Must also be set with the following fields: *
|
3169
|
-
# hashed_first_name * hashed_last_name * zip_codes
|
3170
|
-
# Corresponds to the JSON property `countryCode`
|
3171
|
-
# @return [String]
|
3172
|
-
attr_accessor :country_code
|
3173
|
-
|
3174
|
-
# A list of SHA256 hashed email of the member. Before hashing, remove all
|
3175
|
-
# whitespace and make sure the string is all lowercase.
|
3176
|
-
# Corresponds to the JSON property `hashedEmails`
|
3177
|
-
# @return [Array<String>]
|
3178
|
-
attr_accessor :hashed_emails
|
3179
|
-
|
3180
|
-
# SHA256 hashed first name of the member. Before hashing, remove all whitespace
|
3181
|
-
# and make sure the string is all lowercase. Must also be set with the following
|
3182
|
-
# fields: * country_code * hashed_last_name * zip_codes
|
3183
|
-
# Corresponds to the JSON property `hashedFirstName`
|
3184
|
-
# @return [String]
|
3185
|
-
attr_accessor :hashed_first_name
|
3186
|
-
|
3187
|
-
# SHA256 hashed last name of the member. Before hashing, remove all whitespace
|
3188
|
-
# and make sure the string is all lowercase. Must also be set with the following
|
3189
|
-
# fields: * country_code * hashed_first_name * zip_codes
|
3190
|
-
# Corresponds to the JSON property `hashedLastName`
|
3191
|
-
# @return [String]
|
3192
|
-
attr_accessor :hashed_last_name
|
3193
|
-
|
3194
|
-
# A list of SHA256 hashed phone numbers of the member. Before hashing, all phone
|
3195
|
-
# numbers must be formatted using the [E.164 format](//en.wikipedia.org/wiki/E.
|
3196
|
-
# 164) and include the country calling code.
|
3197
|
-
# Corresponds to the JSON property `hashedPhoneNumbers`
|
3198
|
-
# @return [Array<String>]
|
3199
|
-
attr_accessor :hashed_phone_numbers
|
3200
|
-
|
3201
|
-
# A list of zip codes of the member. Must also be set with the following fields:
|
3202
|
-
# * country_code * hashed_first_name * hashed_last_name
|
3203
|
-
# Corresponds to the JSON property `zipCodes`
|
3204
|
-
# @return [Array<String>]
|
3205
|
-
attr_accessor :zip_codes
|
3206
|
-
|
3207
|
-
def initialize(**args)
|
3208
|
-
update!(**args)
|
3209
|
-
end
|
3210
|
-
|
3211
|
-
# Update properties of this object
|
3212
|
-
def update!(**args)
|
3213
|
-
@country_code = args[:country_code] if args.key?(:country_code)
|
3214
|
-
@hashed_emails = args[:hashed_emails] if args.key?(:hashed_emails)
|
3215
|
-
@hashed_first_name = args[:hashed_first_name] if args.key?(:hashed_first_name)
|
3216
|
-
@hashed_last_name = args[:hashed_last_name] if args.key?(:hashed_last_name)
|
3217
|
-
@hashed_phone_numbers = args[:hashed_phone_numbers] if args.key?(:hashed_phone_numbers)
|
3218
|
-
@zip_codes = args[:zip_codes] if args.key?(:zip_codes)
|
3219
|
-
end
|
3220
|
-
end
|
3221
|
-
|
3222
|
-
# Wrapper message for a list of contact information defining Customer Match
|
3223
|
-
# audience members.
|
3224
|
-
class ContactInfoList
|
3225
|
-
include Google::Apis::Core::Hashable
|
3226
|
-
|
3227
|
-
# User consent status.
|
3228
|
-
# Corresponds to the JSON property `consent`
|
3229
|
-
# @return [Google::Apis::DisplayvideoV2::Consent]
|
3230
|
-
attr_accessor :consent
|
3231
|
-
|
3232
|
-
# A list of ContactInfo objects defining Customer Match audience members. The
|
3233
|
-
# size of members after splitting the contact_infos mustn't be greater than 500,
|
3234
|
-
# 000.
|
3235
|
-
# Corresponds to the JSON property `contactInfos`
|
3236
|
-
# @return [Array<Google::Apis::DisplayvideoV2::ContactInfo>]
|
3237
|
-
attr_accessor :contact_infos
|
3238
|
-
|
3239
|
-
def initialize(**args)
|
3240
|
-
update!(**args)
|
3241
|
-
end
|
3242
|
-
|
3243
|
-
# Update properties of this object
|
3244
|
-
def update!(**args)
|
3245
|
-
@consent = args[:consent] if args.key?(:consent)
|
3246
|
-
@contact_infos = args[:contact_infos] if args.key?(:contact_infos)
|
3247
|
-
end
|
3248
|
-
end
|
3249
|
-
|
3250
3038
|
# Details for content duration assigned targeting option. This will be populated
|
3251
3039
|
# in the content_duration_details field when targeting_type is `
|
3252
3040
|
# TARGETING_TYPE_CONTENT_DURATION`. Explicitly targeting all options is not
|
@@ -3524,7 +3312,13 @@ module Google
|
|
3524
3312
|
|
3525
3313
|
# The Floodlight activity configs used to track conversions. The number of
|
3526
3314
|
# conversions counted is the sum of all of the conversions counted by all of the
|
3527
|
-
# Floodlight activity IDs specified in this field.
|
3315
|
+
# Floodlight activity IDs specified in this field. *Warning*: Starting **April 1,
|
3316
|
+
# 2025**, this field will no longer be writable while a custom bidding
|
3317
|
+
# algorithm is assigned to the line item. If you set this field and assign a
|
3318
|
+
# custom bidding algorithm in the same request, the floodlight activities must
|
3319
|
+
# match the ones used by the custom bidding algorithm. [Read more about this
|
3320
|
+
# announced change](/display-video/api/deprecations#features.
|
3321
|
+
# custom_bidding_floodlight).
|
3528
3322
|
# Corresponds to the JSON property `floodlightActivityConfigs`
|
3529
3323
|
# @return [Array<Google::Apis::DisplayvideoV2::TrackingFloodlightActivityConfig>]
|
3530
3324
|
attr_accessor :floodlight_activity_configs
|
@@ -3694,7 +3488,7 @@ module Google
|
|
3694
3488
|
class Creative
|
3695
3489
|
include Google::Apis::Core::Hashable
|
3696
3490
|
|
3697
|
-
# Additional dimensions. Applicable when creative_type is one of: * `
|
3491
|
+
# Optional. Additional dimensions. Applicable when creative_type is one of: * `
|
3698
3492
|
# CREATIVE_TYPE_STANDARD` * `CREATIVE_TYPE_EXPANDABLE` * `CREATIVE_TYPE_NATIVE` *
|
3699
3493
|
# `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `CREATIVE_TYPE_LIGHTBOX` * `
|
3700
3494
|
# CREATIVE_TYPE_PUBLISHER_HOSTED` If this field is specified, width_pixels and
|
@@ -3708,7 +3502,7 @@ module Google
|
|
3708
3502
|
# @return [Fixnum]
|
3709
3503
|
attr_accessor :advertiser_id
|
3710
3504
|
|
3711
|
-
# Third-party HTML tracking tag to be appended to the creative tag.
|
3505
|
+
# Optional. Third-party HTML tracking tag to be appended to the creative tag.
|
3712
3506
|
# Corresponds to the JSON property `appendedTag`
|
3713
3507
|
# @return [String]
|
3714
3508
|
attr_accessor :appended_tag
|
@@ -3730,22 +3524,23 @@ module Google
|
|
3730
3524
|
# @return [Google::Apis::DisplayvideoV2::CmTrackingAd]
|
3731
3525
|
attr_accessor :cm_tracking_ad
|
3732
3526
|
|
3733
|
-
# The IDs of companion creatives for a video creative. You can assign
|
3734
|
-
# display creatives (with image or HTML5 assets) to serve surrounding
|
3735
|
-
# publisher's video player. Companions display around the video player while
|
3736
|
-
# video is playing and remain after the video has completed. Creatives
|
3737
|
-
# additional dimensions can not be companion creatives. This field is
|
3738
|
-
# supported for following creative_type: * `CREATIVE_TYPE_AUDIO` * `
|
3527
|
+
# Optional. The IDs of companion creatives for a video creative. You can assign
|
3528
|
+
# existing display creatives (with image or HTML5 assets) to serve surrounding
|
3529
|
+
# the publisher's video player. Companions display around the video player while
|
3530
|
+
# the video is playing and remain after the video has completed. Creatives
|
3531
|
+
# contain additional dimensions can not be companion creatives. This field is
|
3532
|
+
# only supported for the following creative_type: * `CREATIVE_TYPE_AUDIO` * `
|
3739
3533
|
# CREATIVE_TYPE_VIDEO`
|
3740
3534
|
# Corresponds to the JSON property `companionCreativeIds`
|
3741
3535
|
# @return [Array<Fixnum>]
|
3742
3536
|
attr_accessor :companion_creative_ids
|
3743
3537
|
|
3744
|
-
# Counter events for a rich media creative. Counters track the number
|
3745
|
-
# that a user interacts with any part of a rich media creative in a
|
3746
|
-
# way (mouse-overs, mouse-outs, clicks, taps, data loading, keyboard
|
3747
|
-
# etc.). Any event that can be captured in the creative can be recorded
|
3748
|
-
# counter. Leave it empty or unset for creatives containing image assets
|
3538
|
+
# Optional. Counter events for a rich media creative. Counters track the number
|
3539
|
+
# of times that a user interacts with any part of a rich media creative in a
|
3540
|
+
# specified way (mouse-overs, mouse-outs, clicks, taps, data loading, keyboard
|
3541
|
+
# entries, etc.). Any event that can be captured in the creative can be recorded
|
3542
|
+
# as a counter. Leave it empty or unset for creatives containing image assets
|
3543
|
+
# only.
|
3749
3544
|
# Corresponds to the JSON property `counterEvents`
|
3750
3545
|
# @return [Array<Google::Apis::DisplayvideoV2::CounterEvent>]
|
3751
3546
|
attr_accessor :counter_events
|
@@ -3838,24 +3633,25 @@ module Google
|
|
3838
3633
|
attr_accessor :html5_video
|
3839
3634
|
alias_method :html5_video?, :html5_video
|
3840
3635
|
|
3841
|
-
# Indicates whether Integral Ad Science (IAS) campaign monitoring is
|
3842
|
-
# enable this for the creative, make sure the Advertiser.
|
3843
|
-
# ias_client_id has been set to your IAS client ID.
|
3636
|
+
# Optional. Indicates whether Integral Ad Science (IAS) campaign monitoring is
|
3637
|
+
# enabled. To enable this for the creative, make sure the Advertiser.
|
3638
|
+
# creative_config.ias_client_id has been set to your IAS client ID.
|
3844
3639
|
# Corresponds to the JSON property `iasCampaignMonitoring`
|
3845
3640
|
# @return [Boolean]
|
3846
3641
|
attr_accessor :ias_campaign_monitoring
|
3847
3642
|
alias_method :ias_campaign_monitoring?, :ias_campaign_monitoring
|
3848
3643
|
|
3849
|
-
# ID information used to link this creative to an external system.
|
3850
|
-
# encoded with a length of no more than 10,000 characters.
|
3644
|
+
# Optional. ID information used to link this creative to an external system.
|
3645
|
+
# Must be UTF-8 encoded with a length of no more than 10,000 characters.
|
3851
3646
|
# Corresponds to the JSON property `integrationCode`
|
3852
3647
|
# @return [String]
|
3853
3648
|
attr_accessor :integration_code
|
3854
3649
|
|
3855
|
-
# JavaScript measurement URL from supported third-party verification
|
3856
|
-
# ComScore, DoubleVerify, IAS, Moat). HTML script tags are not
|
3857
|
-
# field is only writeable in following creative_type: * `
|
3858
|
-
# `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `
|
3650
|
+
# Optional. JavaScript measurement URL from supported third-party verification
|
3651
|
+
# providers (ComScore, DoubleVerify, IAS, Moat). HTML script tags are not
|
3652
|
+
# supported. This field is only writeable in the following creative_type: * `
|
3653
|
+
# CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `
|
3654
|
+
# CREATIVE_TYPE_NATIVE_VIDEO`
|
3859
3655
|
# Corresponds to the JSON property `jsTrackerUrl`
|
3860
3656
|
# @return [String]
|
3861
3657
|
attr_accessor :js_tracker_url
|
@@ -3888,8 +3684,8 @@ module Google
|
|
3888
3684
|
# @return [String]
|
3889
3685
|
attr_accessor :name
|
3890
3686
|
|
3891
|
-
# User notes for this creative. Must be UTF-8 encoded with a length of
|
3892
|
-
# than 20,000 characters.
|
3687
|
+
# Optional. User notes for this creative. Must be UTF-8 encoded with a length of
|
3688
|
+
# no more than 20,000 characters.
|
3893
3689
|
# Corresponds to the JSON property `notes`
|
3894
3690
|
# @return [String]
|
3895
3691
|
attr_accessor :notes
|
@@ -3961,8 +3757,8 @@ module Google
|
|
3961
3757
|
# @return [Google::Apis::DisplayvideoV2::AudioVideoOffset]
|
3962
3758
|
attr_accessor :skip_offset
|
3963
3759
|
|
3964
|
-
# Whether the user can choose to skip a video creative. This field is
|
3965
|
-
# supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
|
3760
|
+
# Optional. Whether the user can choose to skip a video creative. This field is
|
3761
|
+
# only supported for the following creative_type: * `CREATIVE_TYPE_VIDEO`
|
3966
3762
|
# Corresponds to the JSON property `skippable`
|
3967
3763
|
# @return [Boolean]
|
3968
3764
|
attr_accessor :skippable
|
@@ -3977,27 +3773,28 @@ module Google
|
|
3977
3773
|
# @return [String]
|
3978
3774
|
attr_accessor :third_party_tag
|
3979
3775
|
|
3980
|
-
# Tracking URLs from third parties to track interactions with a video
|
3981
|
-
# This field is only supported for the following creative_type: * `
|
3776
|
+
# Optional. Tracking URLs from third parties to track interactions with a video
|
3777
|
+
# creative. This field is only supported for the following creative_type: * `
|
3982
3778
|
# CREATIVE_TYPE_AUDIO` * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO`
|
3983
3779
|
# Corresponds to the JSON property `thirdPartyUrls`
|
3984
3780
|
# @return [Array<Google::Apis::DisplayvideoV2::ThirdPartyUrl>]
|
3985
3781
|
attr_accessor :third_party_urls
|
3986
3782
|
|
3987
|
-
# Timer custom events for a rich media creative. Timers track the time
|
3988
|
-
# which a user views and interacts with a specified part of a rich media
|
3783
|
+
# Optional. Timer custom events for a rich media creative. Timers track the time
|
3784
|
+
# during which a user views and interacts with a specified part of a rich media
|
3989
3785
|
# creative. A creative can have multiple timer events, each timed independently.
|
3990
3786
|
# Leave it empty or unset for creatives containing image assets only.
|
3991
3787
|
# Corresponds to the JSON property `timerEvents`
|
3992
3788
|
# @return [Array<Google::Apis::DisplayvideoV2::TimerEvent>]
|
3993
3789
|
attr_accessor :timer_events
|
3994
3790
|
|
3995
|
-
# Tracking URLs for analytics providers or third-party ad technology
|
3996
|
-
# The URLs must start with https (except on inventory that doesn't
|
3997
|
-
# compliance). If using macros in your URL, use only macros
|
3998
|
-
# & Video 360. Standard URLs only, no IMG or SCRIPT tags.
|
3999
|
-
# writeable in following creative_type: * `
|
4000
|
-
# CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `
|
3791
|
+
# Optional. Tracking URLs for analytics providers or third-party ad technology
|
3792
|
+
# vendors. The URLs must start with `https:` (except on inventory that doesn't
|
3793
|
+
# require SSL compliance). If using macros in your URL, use only macros
|
3794
|
+
# supported by Display & Video 360. Standard URLs only, no IMG or SCRIPT tags.
|
3795
|
+
# This field is only writeable in the following creative_type: * `
|
3796
|
+
# CREATIVE_TYPE_NATIVE` * `CREATIVE_TYPE_NATIVE_SITE_SQUARE` * `
|
3797
|
+
# CREATIVE_TYPE_NATIVE_VIDEO`
|
4001
3798
|
# Corresponds to the JSON property `trackerUrls`
|
4002
3799
|
# @return [Array<String>]
|
4003
3800
|
attr_accessor :tracker_urls
|
@@ -4008,7 +3805,7 @@ module Google
|
|
4008
3805
|
# each designed for specific video players or bandwidths. These transcodes give
|
4009
3806
|
# a publisher's system more options to choose from for each impression on your
|
4010
3807
|
# video and ensures that the appropriate file serves based on the viewer’s
|
4011
|
-
# connection and screen size. This field is only supported in following
|
3808
|
+
# connection and screen size. This field is only supported in the following
|
4012
3809
|
# creative_type: * `CREATIVE_TYPE_VIDEO` * `CREATIVE_TYPE_NATIVE_VIDEO` * `
|
4013
3810
|
# CREATIVE_TYPE_AUDIO`
|
4014
3811
|
# Corresponds to the JSON property `transcodes`
|
@@ -4399,7 +4196,7 @@ module Google
|
|
4399
4196
|
include Google::Apis::Core::Hashable
|
4400
4197
|
|
4401
4198
|
# Required. All custom list targeting settings in custom list group. Repeated
|
4402
|
-
# settings with same id will be ignored.
|
4199
|
+
# settings with the same id will be ignored.
|
4403
4200
|
# Corresponds to the JSON property `settings`
|
4404
4201
|
# @return [Array<Google::Apis::DisplayvideoV2::CustomListTargetingSetting>]
|
4405
4202
|
attr_accessor :settings
|
@@ -5029,73 +4826,6 @@ module Google
|
|
5029
4826
|
end
|
5030
4827
|
end
|
5031
4828
|
|
5032
|
-
# Request message for FirstAndThirdPartyAudienceService.EditCustomerMatchMembers.
|
5033
|
-
class EditCustomerMatchMembersRequest
|
5034
|
-
include Google::Apis::Core::Hashable
|
5035
|
-
|
5036
|
-
# Wrapper message for a list of contact information defining Customer Match
|
5037
|
-
# audience members.
|
5038
|
-
# Corresponds to the JSON property `addedContactInfoList`
|
5039
|
-
# @return [Google::Apis::DisplayvideoV2::ContactInfoList]
|
5040
|
-
attr_accessor :added_contact_info_list
|
5041
|
-
|
5042
|
-
# Wrapper message for a list of mobile device IDs defining Customer Match
|
5043
|
-
# audience members.
|
5044
|
-
# Corresponds to the JSON property `addedMobileDeviceIdList`
|
5045
|
-
# @return [Google::Apis::DisplayvideoV2::MobileDeviceIdList]
|
5046
|
-
attr_accessor :added_mobile_device_id_list
|
5047
|
-
|
5048
|
-
# Required. The ID of the owner advertiser of the updated Customer Match
|
5049
|
-
# FirstAndThirdPartyAudience.
|
5050
|
-
# Corresponds to the JSON property `advertiserId`
|
5051
|
-
# @return [Fixnum]
|
5052
|
-
attr_accessor :advertiser_id
|
5053
|
-
|
5054
|
-
# Wrapper message for a list of contact information defining Customer Match
|
5055
|
-
# audience members.
|
5056
|
-
# Corresponds to the JSON property `removedContactInfoList`
|
5057
|
-
# @return [Google::Apis::DisplayvideoV2::ContactInfoList]
|
5058
|
-
attr_accessor :removed_contact_info_list
|
5059
|
-
|
5060
|
-
# Wrapper message for a list of mobile device IDs defining Customer Match
|
5061
|
-
# audience members.
|
5062
|
-
# Corresponds to the JSON property `removedMobileDeviceIdList`
|
5063
|
-
# @return [Google::Apis::DisplayvideoV2::MobileDeviceIdList]
|
5064
|
-
attr_accessor :removed_mobile_device_id_list
|
5065
|
-
|
5066
|
-
def initialize(**args)
|
5067
|
-
update!(**args)
|
5068
|
-
end
|
5069
|
-
|
5070
|
-
# Update properties of this object
|
5071
|
-
def update!(**args)
|
5072
|
-
@added_contact_info_list = args[:added_contact_info_list] if args.key?(:added_contact_info_list)
|
5073
|
-
@added_mobile_device_id_list = args[:added_mobile_device_id_list] if args.key?(:added_mobile_device_id_list)
|
5074
|
-
@advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
|
5075
|
-
@removed_contact_info_list = args[:removed_contact_info_list] if args.key?(:removed_contact_info_list)
|
5076
|
-
@removed_mobile_device_id_list = args[:removed_mobile_device_id_list] if args.key?(:removed_mobile_device_id_list)
|
5077
|
-
end
|
5078
|
-
end
|
5079
|
-
|
5080
|
-
# The response of FirstAndThirdPartyAudienceService.EditCustomerMatchMembers.
|
5081
|
-
class EditCustomerMatchMembersResponse
|
5082
|
-
include Google::Apis::Core::Hashable
|
5083
|
-
|
5084
|
-
# Required. The ID of the updated Customer Match FirstAndThirdPartyAudience.
|
5085
|
-
# Corresponds to the JSON property `firstAndThirdPartyAudienceId`
|
5086
|
-
# @return [Fixnum]
|
5087
|
-
attr_accessor :first_and_third_party_audience_id
|
5088
|
-
|
5089
|
-
def initialize(**args)
|
5090
|
-
update!(**args)
|
5091
|
-
end
|
5092
|
-
|
5093
|
-
# Update properties of this object
|
5094
|
-
def update!(**args)
|
5095
|
-
@first_and_third_party_audience_id = args[:first_and_third_party_audience_id] if args.key?(:first_and_third_party_audience_id)
|
5096
|
-
end
|
5097
|
-
end
|
5098
|
-
|
5099
4829
|
# Request message for GuaranteedOrderService.EditGuaranteedOrderReadAccessors.
|
5100
4830
|
class EditGuaranteedOrderReadAccessorsRequest
|
5101
4831
|
include Google::Apis::Core::Hashable
|
@@ -5412,15 +5142,15 @@ module Google
|
|
5412
5142
|
class ExitEvent
|
5413
5143
|
include Google::Apis::Core::Hashable
|
5414
5144
|
|
5415
|
-
# The name of the click tag of the exit event. The name must be unique
|
5416
|
-
# one creative. Leave it empty or unset for creatives containing image
|
5417
|
-
# only.
|
5145
|
+
# Optional. The name of the click tag of the exit event. The name must be unique
|
5146
|
+
# within one creative. Leave it empty or unset for creatives containing image
|
5147
|
+
# assets only.
|
5418
5148
|
# Corresponds to the JSON property `name`
|
5419
5149
|
# @return [String]
|
5420
5150
|
attr_accessor :name
|
5421
5151
|
|
5422
|
-
# The name used to identify this event in reports. Leave it empty or
|
5423
|
-
# creatives containing image assets only.
|
5152
|
+
# Optional. The name used to identify this event in reports. Leave it empty or
|
5153
|
+
# unset for creatives containing image assets only.
|
5424
5154
|
# Corresponds to the JSON property `reportingName`
|
5425
5155
|
# @return [String]
|
5426
5156
|
attr_accessor :reporting_name
|
@@ -5449,213 +5179,6 @@ module Google
|
|
5449
5179
|
end
|
5450
5180
|
end
|
5451
5181
|
|
5452
|
-
# Describes a first or third party audience list used for targeting. First party
|
5453
|
-
# audiences are created via usage of client data. Third party audiences are
|
5454
|
-
# provided by Third Party data providers and can only be licensed to customers.
|
5455
|
-
class FirstAndThirdPartyAudience
|
5456
|
-
include Google::Apis::Core::Hashable
|
5457
|
-
|
5458
|
-
# Output only. The estimated audience size for the Display network in the past
|
5459
|
-
# month. If the size is less than 1000, the number will be hidden and 0 will be
|
5460
|
-
# returned due to privacy reasons. Otherwise, the number will be rounded off to
|
5461
|
-
# two significant digits. Only returned in GET request.
|
5462
|
-
# Corresponds to the JSON property `activeDisplayAudienceSize`
|
5463
|
-
# @return [Fixnum]
|
5464
|
-
attr_accessor :active_display_audience_size
|
5465
|
-
|
5466
|
-
# The app_id matches with the type of the mobile_device_ids being uploaded. Only
|
5467
|
-
# applicable to audience_type `CUSTOMER_MATCH_DEVICE_ID`
|
5468
|
-
# Corresponds to the JSON property `appId`
|
5469
|
-
# @return [String]
|
5470
|
-
attr_accessor :app_id
|
5471
|
-
|
5472
|
-
# Output only. The source of the audience.
|
5473
|
-
# Corresponds to the JSON property `audienceSource`
|
5474
|
-
# @return [String]
|
5475
|
-
attr_accessor :audience_source
|
5476
|
-
|
5477
|
-
# The type of the audience.
|
5478
|
-
# Corresponds to the JSON property `audienceType`
|
5479
|
-
# @return [String]
|
5480
|
-
attr_accessor :audience_type
|
5481
|
-
|
5482
|
-
# Wrapper message for a list of contact information defining Customer Match
|
5483
|
-
# audience members.
|
5484
|
-
# Corresponds to the JSON property `contactInfoList`
|
5485
|
-
# @return [Google::Apis::DisplayvideoV2::ContactInfoList]
|
5486
|
-
attr_accessor :contact_info_list
|
5487
|
-
|
5488
|
-
# The user-provided description of the audience. Only applicable to first party
|
5489
|
-
# audiences.
|
5490
|
-
# Corresponds to the JSON property `description`
|
5491
|
-
# @return [String]
|
5492
|
-
attr_accessor :description
|
5493
|
-
|
5494
|
-
# Output only. The estimated audience size for the Display network. If the size
|
5495
|
-
# is less than 1000, the number will be hidden and 0 will be returned due to
|
5496
|
-
# privacy reasons. Otherwise, the number will be rounded off to two significant
|
5497
|
-
# digits. Only returned in GET request.
|
5498
|
-
# Corresponds to the JSON property `displayAudienceSize`
|
5499
|
-
# @return [Fixnum]
|
5500
|
-
attr_accessor :display_audience_size
|
5501
|
-
|
5502
|
-
# Output only. The estimated desktop audience size in Display network. If the
|
5503
|
-
# size is less than 1000, the number will be hidden and 0 will be returned due
|
5504
|
-
# to privacy reasons. Otherwise, the number will be rounded off to two
|
5505
|
-
# significant digits. Only applicable to first party audiences. Only returned in
|
5506
|
-
# GET request.
|
5507
|
-
# Corresponds to the JSON property `displayDesktopAudienceSize`
|
5508
|
-
# @return [Fixnum]
|
5509
|
-
attr_accessor :display_desktop_audience_size
|
5510
|
-
|
5511
|
-
# Output only. The estimated mobile app audience size in Display network. If the
|
5512
|
-
# size is less than 1000, the number will be hidden and 0 will be returned due
|
5513
|
-
# to privacy reasons. Otherwise, the number will be rounded off to two
|
5514
|
-
# significant digits. Only applicable to first party audiences. Only returned in
|
5515
|
-
# GET request.
|
5516
|
-
# Corresponds to the JSON property `displayMobileAppAudienceSize`
|
5517
|
-
# @return [Fixnum]
|
5518
|
-
attr_accessor :display_mobile_app_audience_size
|
5519
|
-
|
5520
|
-
# Output only. The estimated mobile web audience size in Display network. If the
|
5521
|
-
# size is less than 1000, the number will be hidden and 0 will be returned due
|
5522
|
-
# to privacy reasons. Otherwise, the number will be rounded off to two
|
5523
|
-
# significant digits. Only applicable to first party audiences. Only returned in
|
5524
|
-
# GET request.
|
5525
|
-
# Corresponds to the JSON property `displayMobileWebAudienceSize`
|
5526
|
-
# @return [Fixnum]
|
5527
|
-
attr_accessor :display_mobile_web_audience_size
|
5528
|
-
|
5529
|
-
# The display name of the first and third party audience.
|
5530
|
-
# Corresponds to the JSON property `displayName`
|
5531
|
-
# @return [String]
|
5532
|
-
attr_accessor :display_name
|
5533
|
-
|
5534
|
-
# Output only. The unique ID of the first and third party audience. Assigned by
|
5535
|
-
# the system.
|
5536
|
-
# Corresponds to the JSON property `firstAndThirdPartyAudienceId`
|
5537
|
-
# @return [Fixnum]
|
5538
|
-
attr_accessor :first_and_third_party_audience_id
|
5539
|
-
|
5540
|
-
# Whether the audience is a first or third party audience.
|
5541
|
-
# Corresponds to the JSON property `firstAndThirdPartyAudienceType`
|
5542
|
-
# @return [String]
|
5543
|
-
attr_accessor :first_and_third_party_audience_type
|
5544
|
-
|
5545
|
-
# Output only. The estimated audience size for Gmail network. If the size is
|
5546
|
-
# less than 1000, the number will be hidden and 0 will be returned due to
|
5547
|
-
# privacy reasons. Otherwise, the number will be rounded off to two significant
|
5548
|
-
# digits. Only applicable to first party audiences. Only returned in GET request.
|
5549
|
-
# Corresponds to the JSON property `gmailAudienceSize`
|
5550
|
-
# @return [Fixnum]
|
5551
|
-
attr_accessor :gmail_audience_size
|
5552
|
-
|
5553
|
-
# The duration in days that an entry remains in the audience after the
|
5554
|
-
# qualifying event. If the audience has no expiration, set the value of this
|
5555
|
-
# field to 10000. Otherwise, the set value must be greater than 0 and less than
|
5556
|
-
# or equal to 540. Only applicable to first party audiences. This field is
|
5557
|
-
# required if one of the following audience_type is used: * `
|
5558
|
-
# CUSTOMER_MATCH_CONTACT_INFO` * `CUSTOMER_MATCH_DEVICE_ID`
|
5559
|
-
# Corresponds to the JSON property `membershipDurationDays`
|
5560
|
-
# @return [Fixnum]
|
5561
|
-
attr_accessor :membership_duration_days
|
5562
|
-
|
5563
|
-
# Wrapper message for a list of mobile device IDs defining Customer Match
|
5564
|
-
# audience members.
|
5565
|
-
# Corresponds to the JSON property `mobileDeviceIdList`
|
5566
|
-
# @return [Google::Apis::DisplayvideoV2::MobileDeviceIdList]
|
5567
|
-
attr_accessor :mobile_device_id_list
|
5568
|
-
|
5569
|
-
# Output only. The resource name of the first and third party audience.
|
5570
|
-
# Corresponds to the JSON property `name`
|
5571
|
-
# @return [String]
|
5572
|
-
attr_accessor :name
|
5573
|
-
|
5574
|
-
# Output only. The estimated audience size for YouTube network. If the size is
|
5575
|
-
# less than 1000, the number will be hidden and 0 will be returned due to
|
5576
|
-
# privacy reasons. Otherwise, the number will be rounded off to two significant
|
5577
|
-
# digits. Only applicable to first party audiences. Only returned in GET request.
|
5578
|
-
# Corresponds to the JSON property `youtubeAudienceSize`
|
5579
|
-
# @return [Fixnum]
|
5580
|
-
attr_accessor :youtube_audience_size
|
5581
|
-
|
5582
|
-
def initialize(**args)
|
5583
|
-
update!(**args)
|
5584
|
-
end
|
5585
|
-
|
5586
|
-
# Update properties of this object
|
5587
|
-
def update!(**args)
|
5588
|
-
@active_display_audience_size = args[:active_display_audience_size] if args.key?(:active_display_audience_size)
|
5589
|
-
@app_id = args[:app_id] if args.key?(:app_id)
|
5590
|
-
@audience_source = args[:audience_source] if args.key?(:audience_source)
|
5591
|
-
@audience_type = args[:audience_type] if args.key?(:audience_type)
|
5592
|
-
@contact_info_list = args[:contact_info_list] if args.key?(:contact_info_list)
|
5593
|
-
@description = args[:description] if args.key?(:description)
|
5594
|
-
@display_audience_size = args[:display_audience_size] if args.key?(:display_audience_size)
|
5595
|
-
@display_desktop_audience_size = args[:display_desktop_audience_size] if args.key?(:display_desktop_audience_size)
|
5596
|
-
@display_mobile_app_audience_size = args[:display_mobile_app_audience_size] if args.key?(:display_mobile_app_audience_size)
|
5597
|
-
@display_mobile_web_audience_size = args[:display_mobile_web_audience_size] if args.key?(:display_mobile_web_audience_size)
|
5598
|
-
@display_name = args[:display_name] if args.key?(:display_name)
|
5599
|
-
@first_and_third_party_audience_id = args[:first_and_third_party_audience_id] if args.key?(:first_and_third_party_audience_id)
|
5600
|
-
@first_and_third_party_audience_type = args[:first_and_third_party_audience_type] if args.key?(:first_and_third_party_audience_type)
|
5601
|
-
@gmail_audience_size = args[:gmail_audience_size] if args.key?(:gmail_audience_size)
|
5602
|
-
@membership_duration_days = args[:membership_duration_days] if args.key?(:membership_duration_days)
|
5603
|
-
@mobile_device_id_list = args[:mobile_device_id_list] if args.key?(:mobile_device_id_list)
|
5604
|
-
@name = args[:name] if args.key?(:name)
|
5605
|
-
@youtube_audience_size = args[:youtube_audience_size] if args.key?(:youtube_audience_size)
|
5606
|
-
end
|
5607
|
-
end
|
5608
|
-
|
5609
|
-
# Details of first and third party audience group. All first and third party
|
5610
|
-
# audience targeting settings are logically ‘OR’ of each other.
|
5611
|
-
class FirstAndThirdPartyAudienceGroup
|
5612
|
-
include Google::Apis::Core::Hashable
|
5613
|
-
|
5614
|
-
# Required. All first and third party audience targeting settings in first and
|
5615
|
-
# third party audience group. Repeated settings with same id are not allowed.
|
5616
|
-
# Corresponds to the JSON property `settings`
|
5617
|
-
# @return [Array<Google::Apis::DisplayvideoV2::FirstAndThirdPartyAudienceTargetingSetting>]
|
5618
|
-
attr_accessor :settings
|
5619
|
-
|
5620
|
-
def initialize(**args)
|
5621
|
-
update!(**args)
|
5622
|
-
end
|
5623
|
-
|
5624
|
-
# Update properties of this object
|
5625
|
-
def update!(**args)
|
5626
|
-
@settings = args[:settings] if args.key?(:settings)
|
5627
|
-
end
|
5628
|
-
end
|
5629
|
-
|
5630
|
-
# Details of first and third party audience targeting setting.
|
5631
|
-
class FirstAndThirdPartyAudienceTargetingSetting
|
5632
|
-
include Google::Apis::Core::Hashable
|
5633
|
-
|
5634
|
-
# Required. First and third party audience id of the first and third party
|
5635
|
-
# audience targeting setting. This id is first_and_third_party_audience_id.
|
5636
|
-
# Corresponds to the JSON property `firstAndThirdPartyAudienceId`
|
5637
|
-
# @return [Fixnum]
|
5638
|
-
attr_accessor :first_and_third_party_audience_id
|
5639
|
-
|
5640
|
-
# The recency of the first and third party audience targeting setting. Only
|
5641
|
-
# applicable to first party audiences, otherwise will be ignored. For more info,
|
5642
|
-
# refer to https://support.google.com/displayvideo/answer/2949947#recency When
|
5643
|
-
# unspecified, no recency limit will be used.
|
5644
|
-
# Corresponds to the JSON property `recency`
|
5645
|
-
# @return [String]
|
5646
|
-
attr_accessor :recency
|
5647
|
-
|
5648
|
-
def initialize(**args)
|
5649
|
-
update!(**args)
|
5650
|
-
end
|
5651
|
-
|
5652
|
-
# Update properties of this object
|
5653
|
-
def update!(**args)
|
5654
|
-
@first_and_third_party_audience_id = args[:first_and_third_party_audience_id] if args.key?(:first_and_third_party_audience_id)
|
5655
|
-
@recency = args[:recency] if args.key?(:recency)
|
5656
|
-
end
|
5657
|
-
end
|
5658
|
-
|
5659
5182
|
# A strategy that uses a fixed bidding price.
|
5660
5183
|
class FixedBidStrategy
|
5661
5184
|
include Google::Apis::Core::Hashable
|
@@ -5835,7 +5358,10 @@ module Google
|
|
5835
5358
|
attr_accessor :max_views
|
5836
5359
|
|
5837
5360
|
# The time unit in which the frequency cap will be applied. Required when
|
5838
|
-
# unlimited is `false`.
|
5361
|
+
# unlimited is `false`. *Warning*: On **February 28, 2025**, frequency cap time
|
5362
|
+
# periods greater than 30 days will no longer be accepted. This field will no
|
5363
|
+
# longer accept the value `TIME_UNIT_LIFETIME`. [Read more about this announced
|
5364
|
+
# change](/display-video/api/deprecations#features.lifetime_frequency_cap).
|
5839
5365
|
# Corresponds to the JSON property `timeUnit`
|
5840
5366
|
# @return [String]
|
5841
5367
|
attr_accessor :time_unit
|
@@ -5846,7 +5372,11 @@ module Google
|
|
5846
5372
|
# TIME_UNIT_MONTHS` - must be between 1 and 2 * `TIME_UNIT_WEEKS` - must be
|
5847
5373
|
# between 1 and 4 * `TIME_UNIT_DAYS` - must be between 1 and 6 * `
|
5848
5374
|
# TIME_UNIT_HOURS` - must be between 1 and 23 * `TIME_UNIT_MINUTES` - must be
|
5849
|
-
# between 1 and 59
|
5375
|
+
# between 1 and 59 *Warning*: On **February 28, 2025**, frequency cap time
|
5376
|
+
# periods greater than 30 days will no longer be accepted. This field will no
|
5377
|
+
# longer accept the value 2 if the value of time_unit is `TIME_UNIT_MONTHS`. [
|
5378
|
+
# Read more about this announced change](/display-video/api/deprecations#
|
5379
|
+
# features.lifetime_frequency_cap).
|
5850
5380
|
# Corresponds to the JSON property `timeUnitCount`
|
5851
5381
|
# @return [Fixnum]
|
5852
5382
|
attr_accessor :time_unit_count
|
@@ -6083,7 +5613,7 @@ module Google
|
|
6083
5613
|
include Google::Apis::Core::Hashable
|
6084
5614
|
|
6085
5615
|
# Required. All Google audience targeting settings in Google audience group.
|
6086
|
-
# Repeated settings with same id will be ignored.
|
5616
|
+
# Repeated settings with the same id will be ignored.
|
6087
5617
|
# Corresponds to the JSON property `settings`
|
6088
5618
|
# @return [Array<Google::Apis::DisplayvideoV2::GoogleAudienceTargetingSetting>]
|
6089
5619
|
attr_accessor :settings
|
@@ -6504,8 +6034,8 @@ module Google
|
|
6504
6034
|
# @return [Fixnum]
|
6505
6035
|
attr_accessor :insertion_order_id
|
6506
6036
|
|
6507
|
-
# The type of insertion order. If this field is unspecified in
|
6508
|
-
# value defaults to `RTB`.
|
6037
|
+
# Optional. The type of insertion order. If this field is unspecified in
|
6038
|
+
# creation, the value defaults to `RTB`.
|
6509
6039
|
# Corresponds to the JSON property `insertionOrderType`
|
6510
6040
|
# @return [String]
|
6511
6041
|
attr_accessor :insertion_order_type
|
@@ -6525,9 +6055,9 @@ module Google
|
|
6525
6055
|
# @return [Google::Apis::DisplayvideoV2::Pacing]
|
6526
6056
|
attr_accessor :pacing
|
6527
6057
|
|
6528
|
-
# The partner costs associated with the insertion order. If absent or
|
6529
|
-
# CreateInsertionOrder method, the newly created insertion order will
|
6530
|
-
# partner costs from the partner settings.
|
6058
|
+
# Optional. The partner costs associated with the insertion order. If absent or
|
6059
|
+
# empty in CreateInsertionOrder method, the newly created insertion order will
|
6060
|
+
# inherit partner costs from the partner settings.
|
6531
6061
|
# Corresponds to the JSON property `partnerCosts`
|
6532
6062
|
# @return [Array<Google::Apis::DisplayvideoV2::PartnerCost>]
|
6533
6063
|
attr_accessor :partner_costs
|
@@ -6578,9 +6108,9 @@ module Google
|
|
6578
6108
|
class InsertionOrderBudget
|
6579
6109
|
include Google::Apis::Core::Hashable
|
6580
6110
|
|
6581
|
-
# The type of automation used to manage bid and budget for the
|
6582
|
-
# If this field is unspecified in creation, the value defaults
|
6583
|
-
# INSERTION_ORDER_AUTOMATION_TYPE_NONE`.
|
6111
|
+
# Optional. The type of automation used to manage bid and budget for the
|
6112
|
+
# insertion order. If this field is unspecified in creation, the value defaults
|
6113
|
+
# to `INSERTION_ORDER_AUTOMATION_TYPE_NONE`.
|
6584
6114
|
# Corresponds to the JSON property `automationType`
|
6585
6115
|
# @return [String]
|
6586
6116
|
attr_accessor :automation_type
|
@@ -6620,8 +6150,8 @@ module Google
|
|
6620
6150
|
# @return [Fixnum]
|
6621
6151
|
attr_accessor :budget_amount_micros
|
6622
6152
|
|
6623
|
-
# The budget_id of the campaign budget that this insertion order
|
6624
|
-
# is a part of.
|
6153
|
+
# Optional. The budget_id of the campaign budget that this insertion order
|
6154
|
+
# budget segment is a part of.
|
6625
6155
|
# Corresponds to the JSON property `campaignBudgetId`
|
6626
6156
|
# @return [Fixnum]
|
6627
6157
|
attr_accessor :campaign_budget_id
|
@@ -6631,9 +6161,9 @@ module Google
|
|
6631
6161
|
# @return [Google::Apis::DisplayvideoV2::DateRange]
|
6632
6162
|
attr_accessor :date_range
|
6633
6163
|
|
6634
|
-
# The budget segment description. It can be used to enter Purchase
|
6635
|
-
# information for each budget segment and have that information printed on
|
6636
|
-
# invoices. Must be UTF-8 encoded.
|
6164
|
+
# Optional. The budget segment description. It can be used to enter Purchase
|
6165
|
+
# Order information for each budget segment and have that information printed on
|
6166
|
+
# the invoices. Must be UTF-8 encoded.
|
6637
6167
|
# Corresponds to the JSON property `description`
|
6638
6168
|
# @return [String]
|
6639
6169
|
attr_accessor :description
|
@@ -6656,7 +6186,7 @@ module Google
|
|
6656
6186
|
include Google::Apis::Core::Hashable
|
6657
6187
|
|
6658
6188
|
# The custom segment ID provided by Integral Ad Science. The ID must be between `
|
6659
|
-
# 1000001` and `1999999`, inclusive.
|
6189
|
+
# 1000001` and `1999999` or `3000001` and `3999999`, inclusive.
|
6660
6190
|
# Corresponds to the JSON property `customSegmentId`
|
6661
6191
|
# @return [Array<Fixnum>]
|
6662
6192
|
attr_accessor :custom_segment_id
|
@@ -7819,34 +7349,6 @@ module Google
|
|
7819
7349
|
end
|
7820
7350
|
end
|
7821
7351
|
|
7822
|
-
# Response message for ListCampaignAssignedTargetingOptions.
|
7823
|
-
class ListCampaignAssignedTargetingOptionsResponse
|
7824
|
-
include Google::Apis::Core::Hashable
|
7825
|
-
|
7826
|
-
# The list of assigned targeting options. This list will be absent if empty.
|
7827
|
-
# Corresponds to the JSON property `assignedTargetingOptions`
|
7828
|
-
# @return [Array<Google::Apis::DisplayvideoV2::AssignedTargetingOption>]
|
7829
|
-
attr_accessor :assigned_targeting_options
|
7830
|
-
|
7831
|
-
# A token identifying the next page of results. This value should be specified
|
7832
|
-
# as the pageToken in a subsequent ListCampaignAssignedTargetingOptionsRequest
|
7833
|
-
# to fetch the next page of results. This token will be absent if there are no
|
7834
|
-
# more assigned_targeting_options to return.
|
7835
|
-
# Corresponds to the JSON property `nextPageToken`
|
7836
|
-
# @return [String]
|
7837
|
-
attr_accessor :next_page_token
|
7838
|
-
|
7839
|
-
def initialize(**args)
|
7840
|
-
update!(**args)
|
7841
|
-
end
|
7842
|
-
|
7843
|
-
# Update properties of this object
|
7844
|
-
def update!(**args)
|
7845
|
-
@assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options)
|
7846
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
7847
|
-
end
|
7848
|
-
end
|
7849
|
-
|
7850
7352
|
#
|
7851
7353
|
class ListCampaignsResponse
|
7852
7354
|
include Google::Apis::Core::Hashable
|
@@ -8039,34 +7541,6 @@ module Google
|
|
8039
7541
|
end
|
8040
7542
|
end
|
8041
7543
|
|
8042
|
-
#
|
8043
|
-
class ListFirstAndThirdPartyAudiencesResponse
|
8044
|
-
include Google::Apis::Core::Hashable
|
8045
|
-
|
8046
|
-
# The list of first and third party audiences. Audience size properties will not
|
8047
|
-
# be included. This list will be absent if empty.
|
8048
|
-
# Corresponds to the JSON property `firstAndThirdPartyAudiences`
|
8049
|
-
# @return [Array<Google::Apis::DisplayvideoV2::FirstAndThirdPartyAudience>]
|
8050
|
-
attr_accessor :first_and_third_party_audiences
|
8051
|
-
|
8052
|
-
# A token to retrieve the next page of results. Pass this value in the
|
8053
|
-
# page_token field in the subsequent call to `ListFirstAndThirdPartyAudiences`
|
8054
|
-
# method to retrieve the next page of results.
|
8055
|
-
# Corresponds to the JSON property `nextPageToken`
|
8056
|
-
# @return [String]
|
8057
|
-
attr_accessor :next_page_token
|
8058
|
-
|
8059
|
-
def initialize(**args)
|
8060
|
-
update!(**args)
|
8061
|
-
end
|
8062
|
-
|
8063
|
-
# Update properties of this object
|
8064
|
-
def update!(**args)
|
8065
|
-
@first_and_third_party_audiences = args[:first_and_third_party_audiences] if args.key?(:first_and_third_party_audiences)
|
8066
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
8067
|
-
end
|
8068
|
-
end
|
8069
|
-
|
8070
7544
|
#
|
8071
7545
|
class ListFloodlightActivitiesResponse
|
8072
7546
|
include Google::Apis::Core::Hashable
|
@@ -8148,35 +7622,6 @@ module Google
|
|
8148
7622
|
end
|
8149
7623
|
end
|
8150
7624
|
|
8151
|
-
#
|
8152
|
-
class ListInsertionOrderAssignedTargetingOptionsResponse
|
8153
|
-
include Google::Apis::Core::Hashable
|
8154
|
-
|
8155
|
-
# The list of assigned targeting options. This list will be absent if empty.
|
8156
|
-
# Corresponds to the JSON property `assignedTargetingOptions`
|
8157
|
-
# @return [Array<Google::Apis::DisplayvideoV2::AssignedTargetingOption>]
|
8158
|
-
attr_accessor :assigned_targeting_options
|
8159
|
-
|
8160
|
-
# A token identifying the next page of results. This value should be specified
|
8161
|
-
# as the pageToken in a subsequent
|
8162
|
-
# ListInsertionOrderAssignedTargetingOptionsRequest to fetch the next page of
|
8163
|
-
# results. This token will be absent if there are no more
|
8164
|
-
# assigned_targeting_options to return.
|
8165
|
-
# Corresponds to the JSON property `nextPageToken`
|
8166
|
-
# @return [String]
|
8167
|
-
attr_accessor :next_page_token
|
8168
|
-
|
8169
|
-
def initialize(**args)
|
8170
|
-
update!(**args)
|
8171
|
-
end
|
8172
|
-
|
8173
|
-
# Update properties of this object
|
8174
|
-
def update!(**args)
|
8175
|
-
@assigned_targeting_options = args[:assigned_targeting_options] if args.key?(:assigned_targeting_options)
|
8176
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
8177
|
-
end
|
8178
|
-
end
|
8179
|
-
|
8180
7625
|
#
|
8181
7626
|
class ListInsertionOrdersResponse
|
8182
7627
|
include Google::Apis::Core::Hashable
|
@@ -8914,7 +8359,11 @@ module Google
|
|
8914
8359
|
|
8915
8360
|
# The ID of the Custom Bidding Algorithm used by this strategy. Only applicable
|
8916
8361
|
# when performance_goal_type is set to `
|
8917
|
-
# BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CUSTOM_ALGO`.
|
8362
|
+
# BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CUSTOM_ALGO`. *Warning*: Starting **
|
8363
|
+
# April 1, 2025**, assigning a custom bidding algorithm that uses floodlight
|
8364
|
+
# activities not identified in floodlightActivityConfigs will return an error. [
|
8365
|
+
# Read more about this announced change](/display-video/api/deprecations#
|
8366
|
+
# features.custom_bidding_floodlight).
|
8918
8367
|
# Corresponds to the JSON property `customBiddingAlgorithmId`
|
8919
8368
|
# @return [Fixnum]
|
8920
8369
|
attr_accessor :custom_bidding_algorithm_id
|
@@ -9020,33 +8469,6 @@ module Google
|
|
9020
8469
|
end
|
9021
8470
|
end
|
9022
8471
|
|
9023
|
-
# Wrapper message for a list of mobile device IDs defining Customer Match
|
9024
|
-
# audience members.
|
9025
|
-
class MobileDeviceIdList
|
9026
|
-
include Google::Apis::Core::Hashable
|
9027
|
-
|
9028
|
-
# User consent status.
|
9029
|
-
# Corresponds to the JSON property `consent`
|
9030
|
-
# @return [Google::Apis::DisplayvideoV2::Consent]
|
9031
|
-
attr_accessor :consent
|
9032
|
-
|
9033
|
-
# A list of mobile device IDs defining Customer Match audience members. The size
|
9034
|
-
# of mobile_device_ids mustn't be greater than 500,000.
|
9035
|
-
# Corresponds to the JSON property `mobileDeviceIds`
|
9036
|
-
# @return [Array<String>]
|
9037
|
-
attr_accessor :mobile_device_ids
|
9038
|
-
|
9039
|
-
def initialize(**args)
|
9040
|
-
update!(**args)
|
9041
|
-
end
|
9042
|
-
|
9043
|
-
# Update properties of this object
|
9044
|
-
def update!(**args)
|
9045
|
-
@consent = args[:consent] if args.key?(:consent)
|
9046
|
-
@mobile_device_ids = args[:mobile_device_ids] if args.key?(:mobile_device_ids)
|
9047
|
-
end
|
9048
|
-
end
|
9049
|
-
|
9050
8472
|
# Represents an amount of money with its currency type.
|
9051
8473
|
class Money
|
9052
8474
|
include Google::Apis::Core::Hashable
|
@@ -9256,7 +8678,7 @@ module Google
|
|
9256
8678
|
include Google::Apis::Core::Hashable
|
9257
8679
|
|
9258
8680
|
# Required. The click tracking URL of the OBA icon. Only URLs of the following
|
9259
|
-
# domains are allowed: * https://info.evidon.com * https://l.betrad.com
|
8681
|
+
# domains are allowed: * `https://info.evidon.com` * `https://l.betrad.com`
|
9260
8682
|
# Corresponds to the JSON property `clickTrackingUrl`
|
9261
8683
|
# @return [String]
|
9262
8684
|
attr_accessor :click_tracking_url
|
@@ -9267,33 +8689,33 @@ module Google
|
|
9267
8689
|
attr_accessor :dimensions
|
9268
8690
|
|
9269
8691
|
# Required. The landing page URL of the OBA icon. Only URLs of the following
|
9270
|
-
# domains are allowed: * https://info.evidon.com * https://l.betrad.com
|
8692
|
+
# domains are allowed: * `https://info.evidon.com` * `https://l.betrad.com`
|
9271
8693
|
# Corresponds to the JSON property `landingPageUrl`
|
9272
8694
|
# @return [String]
|
9273
8695
|
attr_accessor :landing_page_url
|
9274
8696
|
|
9275
|
-
# The position of the OBA icon on the creative.
|
8697
|
+
# Optional. The position of the OBA icon on the creative.
|
9276
8698
|
# Corresponds to the JSON property `position`
|
9277
8699
|
# @return [String]
|
9278
8700
|
attr_accessor :position
|
9279
8701
|
|
9280
|
-
# The program of the OBA icon. For example: “AdChoices”.
|
8702
|
+
# Optional. The program of the OBA icon. For example: “AdChoices”.
|
9281
8703
|
# Corresponds to the JSON property `program`
|
9282
8704
|
# @return [String]
|
9283
8705
|
attr_accessor :program
|
9284
8706
|
|
9285
|
-
# The MIME type of the OBA icon resource.
|
8707
|
+
# Optional. The MIME type of the OBA icon resource.
|
9286
8708
|
# Corresponds to the JSON property `resourceMimeType`
|
9287
8709
|
# @return [String]
|
9288
8710
|
attr_accessor :resource_mime_type
|
9289
8711
|
|
9290
|
-
# The URL of the OBA icon resource.
|
8712
|
+
# Optional. The URL of the OBA icon resource.
|
9291
8713
|
# Corresponds to the JSON property `resourceUrl`
|
9292
8714
|
# @return [String]
|
9293
8715
|
attr_accessor :resource_url
|
9294
8716
|
|
9295
8717
|
# Required. The view tracking URL of the OBA icon. Only URLs of the following
|
9296
|
-
# domains are allowed: * https://info.evidon.com * https://l.betrad.com
|
8718
|
+
# domains are allowed: * `https://info.evidon.com` * `https://l.betrad.com`
|
9297
8719
|
# Corresponds to the JSON property `viewTrackingUrl`
|
9298
8720
|
# @return [String]
|
9299
8721
|
attr_accessor :view_tracking_url
|
@@ -9942,7 +9364,11 @@ module Google
|
|
9942
9364
|
|
9943
9365
|
# The ID of the Custom Bidding Algorithm used by this strategy. Only applicable
|
9944
9366
|
# when performance_goal_type is set to `
|
9945
|
-
# BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CUSTOM_ALGO`.
|
9367
|
+
# BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CUSTOM_ALGO`. *Warning*: Starting **
|
9368
|
+
# April 1, 2025**, assigning a custom bidding algorithm that uses floodlight
|
9369
|
+
# activities not identified in floodlightActivityConfigs will return an error. [
|
9370
|
+
# Read more about this announced change](/display-video/api/deprecations#
|
9371
|
+
# features.custom_bidding_floodlight).
|
9946
9372
|
# Corresponds to the JSON property `customBiddingAlgorithmId`
|
9947
9373
|
# @return [Fixnum]
|
9948
9374
|
attr_accessor :custom_bidding_algorithm_id
|
@@ -11302,14 +10728,14 @@ module Google
|
|
11302
10728
|
class ThirdPartyUrl
|
11303
10729
|
include Google::Apis::Core::Hashable
|
11304
10730
|
|
11305
|
-
# The type of interaction needs to be tracked by the tracking URL
|
10731
|
+
# Optional. The type of interaction needs to be tracked by the tracking URL
|
11306
10732
|
# Corresponds to the JSON property `type`
|
11307
10733
|
# @return [String]
|
11308
10734
|
attr_accessor :type
|
11309
10735
|
|
11310
|
-
# Tracking URL used to track the interaction. Provide a URL with
|
11311
|
-
# or query string, beginning with `https:`. For example, https://
|
11312
|
-
# path
|
10736
|
+
# Optional. Tracking URL used to track the interaction. Provide a URL with
|
10737
|
+
# optional path or query string, beginning with `https:`. For example, `https://
|
10738
|
+
# www.example.com/path`
|
11313
10739
|
# Corresponds to the JSON property `url`
|
11314
10740
|
# @return [String]
|
11315
10741
|
attr_accessor :url
|
@@ -11471,19 +10897,20 @@ module Google
|
|
11471
10897
|
class Transcode
|
11472
10898
|
include Google::Apis::Core::Hashable
|
11473
10899
|
|
11474
|
-
# The bit rate for the audio stream of the transcoded video, or the
|
11475
|
-
# the transcoded audio, in kilobits per second.
|
10900
|
+
# Optional. The bit rate for the audio stream of the transcoded video, or the
|
10901
|
+
# bit rate for the transcoded audio, in kilobits per second.
|
11476
10902
|
# Corresponds to the JSON property `audioBitRateKbps`
|
11477
10903
|
# @return [Fixnum]
|
11478
10904
|
attr_accessor :audio_bit_rate_kbps
|
11479
10905
|
|
11480
|
-
# The sample rate for the audio stream of the transcoded video, or the
|
11481
|
-
# rate for the transcoded audio, in hertz.
|
10906
|
+
# Optional. The sample rate for the audio stream of the transcoded video, or the
|
10907
|
+
# sample rate for the transcoded audio, in hertz.
|
11482
10908
|
# Corresponds to the JSON property `audioSampleRateHz`
|
11483
10909
|
# @return [Fixnum]
|
11484
10910
|
attr_accessor :audio_sample_rate_hz
|
11485
10911
|
|
11486
|
-
# The transcoding bit rate of the transcoded video, in kilobits per
|
10912
|
+
# Optional. The transcoding bit rate of the transcoded video, in kilobits per
|
10913
|
+
# second.
|
11487
10914
|
# Corresponds to the JSON property `bitRateKbps`
|
11488
10915
|
# @return [Fixnum]
|
11489
10916
|
attr_accessor :bit_rate_kbps
|
@@ -11493,27 +10920,27 @@ module Google
|
|
11493
10920
|
# @return [Google::Apis::DisplayvideoV2::Dimensions]
|
11494
10921
|
attr_accessor :dimensions
|
11495
10922
|
|
11496
|
-
# The size of the transcoded file, in bytes.
|
10923
|
+
# Optional. The size of the transcoded file, in bytes.
|
11497
10924
|
# Corresponds to the JSON property `fileSizeBytes`
|
11498
10925
|
# @return [Fixnum]
|
11499
10926
|
attr_accessor :file_size_bytes
|
11500
10927
|
|
11501
|
-
# The frame rate of the transcoded video, in frames per second.
|
10928
|
+
# Optional. The frame rate of the transcoded video, in frames per second.
|
11502
10929
|
# Corresponds to the JSON property `frameRate`
|
11503
10930
|
# @return [Float]
|
11504
10931
|
attr_accessor :frame_rate
|
11505
10932
|
|
11506
|
-
# The MIME type of the transcoded file.
|
10933
|
+
# Optional. The MIME type of the transcoded file.
|
11507
10934
|
# Corresponds to the JSON property `mimeType`
|
11508
10935
|
# @return [String]
|
11509
10936
|
attr_accessor :mime_type
|
11510
10937
|
|
11511
|
-
# The name of the transcoded file.
|
10938
|
+
# Optional. The name of the transcoded file.
|
11512
10939
|
# Corresponds to the JSON property `name`
|
11513
10940
|
# @return [String]
|
11514
10941
|
attr_accessor :name
|
11515
10942
|
|
11516
|
-
# Indicates if the transcoding was successful.
|
10943
|
+
# Optional. Indicates if the transcoding was successful.
|
11517
10944
|
# Corresponds to the JSON property `transcoded`
|
11518
10945
|
# @return [Boolean]
|
11519
10946
|
attr_accessor :transcoded
|
@@ -11542,12 +10969,12 @@ module Google
|
|
11542
10969
|
class UniversalAdId
|
11543
10970
|
include Google::Apis::Core::Hashable
|
11544
10971
|
|
11545
|
-
# The unique creative identifier.
|
10972
|
+
# Optional. The unique creative identifier.
|
11546
10973
|
# Corresponds to the JSON property `id`
|
11547
10974
|
# @return [String]
|
11548
10975
|
attr_accessor :id
|
11549
10976
|
|
11550
|
-
# The registry provides unique creative identifiers.
|
10977
|
+
# Optional. The registry provides unique creative identifiers.
|
11551
10978
|
# Corresponds to the JSON property `registry`
|
11552
10979
|
# @return [String]
|
11553
10980
|
attr_accessor :registry
|