Skip to content

Commit a7386fe

Browse files
feat(displayvideo): update the API
#### displayvideo:v4 The following keys were added: - schemas.CustomBiddingAlgorithm.properties.thirdPartyOptimizationPartner.description - schemas.CustomBiddingAlgorithm.properties.thirdPartyOptimizationPartner.enum - schemas.CustomBiddingAlgorithm.properties.thirdPartyOptimizationPartner.enumDescriptions - schemas.CustomBiddingAlgorithm.properties.thirdPartyOptimizationPartner.type
1 parent cbcf9d9 commit a7386fe

File tree

2 files changed

+29
-6
lines changed

2 files changed

+29
-6
lines changed

discovery/displayvideo-v4.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9302,7 +9302,7 @@
93029302
}
93039303
}
93049304
},
9305-
"revision": "20250729",
9305+
"revision": "20250803",
93069306
"rootUrl": "https://displayvideo.googleapis.com/",
93079307
"schemas": {
93089308
"ActiveViewVideoViewabilityMetricConfig": {
@@ -14079,6 +14079,20 @@
1407914079
"type": "string"
1408014080
},
1408114081
"type": "array"
14082+
},
14083+
"thirdPartyOptimizationPartner": {
14084+
"description": "Optional. Immutable. Designates the third party optimization partner that manages this algorithm.",
14085+
"enum": [
14086+
"UNKNOWN",
14087+
"SCIBIDS",
14088+
"ADELAIDE"
14089+
],
14090+
"enumDescriptions": [
14091+
"Type value is not specified or is unknown in this version.",
14092+
"Third party data science service provider that DV3 partners/advertisers can partner with.",
14093+
"Third party attention measurement service provider that DV3 partners/advertisers can partner with."
14094+
],
14095+
"type": "string"
1408214096
}
1408314097
},
1408414098
"type": "object"

src/apis/displayvideo/v4.ts

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2499,6 +2499,10 @@ export namespace displayvideo_v4 {
24992499
* The IDs of the advertisers who have access to this algorithm. If advertiser_id is set, this field will only consist of that value. This field will not be set if the algorithm [`owner`](/display-video/api/reference/rest/v1/customBiddingAlgorithms#CustomBiddingAlgorithm.FIELDS.oneof_owner) is a partner and is being retrieved using an advertiser [`accessor`](/display-video/api/reference/rest/v1/customBiddingAlgorithms/list#body.QUERY_PARAMETERS.oneof_accessor).
25002500
*/
25012501
sharedAdvertiserIds?: string[] | null;
2502+
/**
2503+
* Optional. Immutable. Designates the third party optimization partner that manages this algorithm.
2504+
*/
2505+
thirdPartyOptimizationPartner?: string | null;
25022506
}
25032507
/**
25042508
* A single custom bidding algorithm rules.
@@ -22797,7 +22801,8 @@ export namespace displayvideo_v4 {
2279722801
* // "modelDetails": [],
2279822802
* // "name": "my_name",
2279922803
* // "partnerId": "my_partnerId",
22800-
* // "sharedAdvertiserIds": []
22804+
* // "sharedAdvertiserIds": [],
22805+
* // "thirdPartyOptimizationPartner": "my_thirdPartyOptimizationPartner"
2280122806
* // }
2280222807
* },
2280322808
* });
@@ -22813,7 +22818,8 @@ export namespace displayvideo_v4 {
2281322818
* // "modelDetails": [],
2281422819
* // "name": "my_name",
2281522820
* // "partnerId": "my_partnerId",
22816-
* // "sharedAdvertiserIds": []
22821+
* // "sharedAdvertiserIds": [],
22822+
* // "thirdPartyOptimizationPartner": "my_thirdPartyOptimizationPartner"
2281722823
* // }
2281822824
* }
2281922825
*
@@ -22964,7 +22970,8 @@ export namespace displayvideo_v4 {
2296422970
* // "modelDetails": [],
2296522971
* // "name": "my_name",
2296622972
* // "partnerId": "my_partnerId",
22967-
* // "sharedAdvertiserIds": []
22973+
* // "sharedAdvertiserIds": [],
22974+
* // "thirdPartyOptimizationPartner": "my_thirdPartyOptimizationPartner"
2296822975
* // }
2296922976
* }
2297022977
*
@@ -23271,7 +23278,8 @@ export namespace displayvideo_v4 {
2327123278
* // "modelDetails": [],
2327223279
* // "name": "my_name",
2327323280
* // "partnerId": "my_partnerId",
23274-
* // "sharedAdvertiserIds": []
23281+
* // "sharedAdvertiserIds": [],
23282+
* // "thirdPartyOptimizationPartner": "my_thirdPartyOptimizationPartner"
2327523283
* // }
2327623284
* },
2327723285
* });
@@ -23287,7 +23295,8 @@ export namespace displayvideo_v4 {
2328723295
* // "modelDetails": [],
2328823296
* // "name": "my_name",
2328923297
* // "partnerId": "my_partnerId",
23290-
* // "sharedAdvertiserIds": []
23298+
* // "sharedAdvertiserIds": [],
23299+
* // "thirdPartyOptimizationPartner": "my_thirdPartyOptimizationPartner"
2329123300
* // }
2329223301
* }
2329323302
*

0 commit comments

Comments
 (0)