Files
openrtb/adcom1/native_format.go
T
2018-12-28 13:51:31 +02:00

25 lines
695 B
Go

package adcom1
import "encoding/json"
// NativeFormat object refines a display placement to be specifically a native display placement.
// It serves as the root of a structure that includes the specifications for each of the assets that comprise the native placement.
type NativeFormat struct {
// Attribute:
// asset
// Type:
// object array; required
// Definition:
// Array of objects that specify the set of native assets and their permitted formats.
// Refer to Object: AssetFormat.
Asset []AssetFormat `json:"asset"`
// Attribute:
// ext
// Type:
// object
// Definition:
// Optional vendor-specific extensions.
Ext json.RawMessage `json:"ext,omitempty"`
}