Data

@Serializable
class Data(var id: String? = null, var name: String? = null, var segment: Set<Segment>? = null)

The data and segment objects together allow additional data about the related object (e.g., user, content) to be specified. This data may be from multiple sources whether from the exchange itself or third parties as specified by the id field. A bid request can mix data objects from multiple providers. The specific data providers in use should be published by the exchange a priori to its bidders.

OpenRTB Section 3.2.21

See also

Constructors

Link copied to clipboard
constructor(id: String? = null, name: String? = null, segment: Set<Segment>? = null)

Properties

Link copied to clipboard

Exchange-specific ID for the data provider.

Link copied to clipboard

Exchange-specific name for the data provider.

Link copied to clipboard

Array of Segment objects that contain the actual data values.