Files
openrtb/adcom1/extended_identifier_uid.go
T
2022-05-12 23:33:01 -04:00

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"`
}