View Source OpenRtbEcto.V2.BidResponse.SeatBid (OpenRtbEcto v0.6.5)

A bid response can contain multiple SeatBid objects, each on behalf of a different bidder seat and each containing one or more individual bids. If multiple impressions are presented in the request, the group attribute can be used to specify if a seat is willing to accept any impressions that it can win (default) or if it is only interested in winning any if it can win them all as a group.

Summary

Types

@type t() :: %OpenRtbEcto.V2.BidResponse.SeatBid{
  bid: term(),
  ext: term(),
  group: term(),
  seat: term()
}

Functions

Link to this function

changeset(seat_bid, attrs \\ %{})

View Source