mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-16 15:06:35 +03:00
27 lines
591 B
Go
27 lines
591 B
Go
package response
|
|
|
|
// 5.3 Object: Title
|
|
//
|
|
// Corresponds to the Title Object in the request, with the value filled in.
|
|
type Title struct {
|
|
// Field:
|
|
// text
|
|
// Scope:
|
|
// required
|
|
// Type:
|
|
// string
|
|
// Description:
|
|
// The text associated with the text element.
|
|
Text string `json:"text"`
|
|
|
|
// Field:
|
|
// ext
|
|
// Scope:
|
|
// optional
|
|
// Type:
|
|
// object
|
|
// Description:
|
|
// This object is a placeholder that may contain custom JSON agreed to by the parties to support flexibility beyond the standard defined in this specification
|
|
Ext RawJSON `json:"ext,omitempty"`
|
|
}
|