mirror of
https://github.com/prebid/openrtb.git
synced 2026-06-14 14:06:38 +03:00
32 lines
709 B
Go
32 lines
709 B
Go
package adcom1
|
|
|
|
import "encoding/json"
|
|
|
|
type ExtendedIdentifierUID struct {
|
|
// Attribute:
|
|
// id
|
|
// Type:
|
|
// string
|
|
// Definition:
|
|
// Cookie or platform-native identifier.
|
|
ID string `json:"id,omitempty"`
|
|
|
|
// Attribute:
|
|
// uids
|
|
// Type:
|
|
// object array
|
|
// Definition:
|
|
// Type of user agent the match is from.
|
|
// It is highly recommended to set this, as many DSPs separate app-native IDs from browser-based IDs and require a type value for ID resolution.
|
|
// Refer to List: Agent Types.
|
|
AType AgentType `json:"uids,omitempty"`
|
|
|
|
// Attribute:
|
|
// ext
|
|
// Type:
|
|
// object
|
|
// Definition:
|
|
// Optional vendor-specific extensions.
|
|
Ext json.RawMessage `json:"ext,omitempty"`
|
|
}
|