From 34c7bcb997279bbbb7285d24e2a88df455928e1c Mon Sep 17 00:00:00 2001 From: Yoshi Automation Date: Wed, 9 Oct 2024 01:36:05 +0000 Subject: [PATCH] fix(realtimebidding): update the API #### realtimebidding:v1 The following keys were changed: - schemas.VideoContent.properties.videoUrl.description - schemas.VideoContent.properties.videoVastXml.description --- discovery/realtimebidding-v1.json | 6 +++--- src/apis/realtimebidding/v1.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discovery/realtimebidding-v1.json b/discovery/realtimebidding-v1.json index 98a8a73508..1a002af675 100644 --- a/discovery/realtimebidding-v1.json +++ b/discovery/realtimebidding-v1.json @@ -1305,7 +1305,7 @@ } } }, - "revision": "20240806", + "revision": "20240930", "rootUrl": "https://realtimebidding.googleapis.com/", "schemas": { "ActivatePretargetingConfigRequest": { @@ -3251,11 +3251,11 @@ "readOnly": true }, "videoUrl": { - "description": "The URL to fetch a video ad.", + "description": "The URL to fetch a video ad. The URL should return an XML response that conforms to the VAST 2.0, 3.0 or 4.x standard.", "type": "string" }, "videoVastXml": { - "description": "The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard.", + "description": "The contents of a VAST document for a video ad. This document should conform to the VAST 2.0, 3.0, or 4.x standard.", "type": "string" } }, diff --git a/src/apis/realtimebidding/v1.ts b/src/apis/realtimebidding/v1.ts index c5ff18355c..a7a42ebc63 100644 --- a/src/apis/realtimebidding/v1.ts +++ b/src/apis/realtimebidding/v1.ts @@ -1185,11 +1185,11 @@ export namespace realtimebidding_v1 { */ videoMetadata?: Schema$VideoMetadata; /** - * The URL to fetch a video ad. + * The URL to fetch a video ad. The URL should return an XML response that conforms to the VAST 2.0, 3.0 or 4.x standard. */ videoUrl?: string | null; /** - * The contents of a VAST document for a video ad. This document should conform to the VAST 2.0 or 3.0 standard. + * The contents of a VAST document for a video ad. This document should conform to the VAST 2.0, 3.0, or 4.x standard. */ videoVastXml?: string | null; }