mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 22:16:41 +03:00
1efc868257
At least, it's more convenient to use with time std pkg. Also, API implementations better never rely on machine-dependent types.
25 lines
573 B
Go
25 lines
573 B
Go
package adcom1
|
|
|
|
import "encoding/json"
|
|
|
|
// TitleAssetFormat object is used to provide native asset format specifications for a title element.
|
|
// Title elements are simple strings.
|
|
type TitleAssetFormat struct {
|
|
// Attribute:
|
|
// len
|
|
// Type:
|
|
// integer; required
|
|
// Definition:
|
|
// The maximum allowed length of the title value.
|
|
// Recommended lengths are 25, 90, or 140.
|
|
Len int64 `json:"len,omitempty"`
|
|
|
|
// Attribute:
|
|
// ext
|
|
// Type:
|
|
// object
|
|
// Definition:
|
|
// Optional vendor-specific extensions.
|
|
Ext json.RawMessage `json:"ext,omitempty"`
|
|
}
|