mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
38 lines
866 B
Go
38 lines
866 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:
|
|
// len
|
|
// Scope:
|
|
// optional
|
|
// Type:
|
|
// integer
|
|
// Description:
|
|
// The length of the title being provided.
|
|
// Required if using assetsurl/dcourl representation, optional if using embedded asset representation.
|
|
Len int64 `json:"len,omitempty"`
|
|
|
|
// 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"`
|
|
}
|