Files
openrtb/adcom1/title_asset_format.go
T
2018-12-25 14:35:40 +02:00

25 lines
570 B
Go

package adcom
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 int `json:"len,omitempty"`
// Attribute:
// ext
// Type:
// object
// Definition:
// Optional vendor-specific extensions.
Ext json.RawMessage `json:"ext,omitempty"`
}