mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
17 lines
314 B
Go
17 lines
314 B
Go
package response
|
|
|
|
// 5.6 Object: Video
|
|
//
|
|
// Corresponds to the Video Object in the request, yet containing a value of a conforming VAST tag as a value.
|
|
type Video struct {
|
|
// Field:
|
|
// vasttag
|
|
// Scope:
|
|
// required
|
|
// Type:
|
|
// string
|
|
// Description:
|
|
// VAST XML
|
|
VASTTag string `json:"vasttag"`
|
|
}
|