Skip to content

Commit

Permalink
fix(realtimebidding): update the API
Browse files Browse the repository at this point in the history
#### realtimebidding:v1

The following keys were changed:
- schemas.VideoContent.properties.videoUrl.description
- schemas.VideoContent.properties.videoVastXml.description
  • Loading branch information
yoshi-automation authored and sofisl committed Oct 10, 2024
1 parent 36809dc commit 34c7bcb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/realtimebidding-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,7 @@
}
}
},
"revision": "20240806",
"revision": "20240930",
"rootUrl": "https://realtimebidding.googleapis.com/",
"schemas": {
"ActivatePretargetingConfigRequest": {
Expand Down Expand Up @@ -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"
}
},
Expand Down
4 changes: 2 additions & 2 deletions src/apis/realtimebidding/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 34c7bcb

Please sign in to comment.