github.com/prebid/prebid-server/v2@v2.18.0/openrtb_ext/imp_yandex.go (about)

     1  package openrtb_ext
     2  
     3  type ExtImpYandex struct {
     4  	/*
     5  		Possible formats
     6  			- `R-I-123456-2`
     7  			- `R-123456-1`
     8  			- `123456-789`
     9  	*/
    10  	PlacementID string `json:"placement_id"`
    11  
    12  	// Deprecated: in favor of `PlacementID`
    13  	PageID int64 `json:"page_id"`
    14  	// Deprecated: in favor of `PlacementID`
    15  	ImpID int64 `json:"imp_id"`
    16  }