Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/main/java/com/metamx/datatypes/mmx/MmxAuctionSummary.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public class MmxAuctionSummary
private final User user;
private final List<MmxBidResponse> responses;
private final Ext ext;
private final String radTechVersion;

public MmxAuctionSummary(
@JsonProperty("timestamp") String timestamp,
Expand All @@ -70,6 +71,7 @@ public MmxAuctionSummary(
this.user = user;
this.responses = responses;
this.ext = ext;
this.radTechVersion = MmxAuctionSummary.class.getPackage().getImplementationVersion();
}

@JsonProperty
Expand Down Expand Up @@ -138,6 +140,12 @@ public Ext getExt()
return ext;
}

@JsonProperty("rad_tech_version")
public String getRadTechVersion()
{
return radTechVersion;
}

public static Builder builder()
{
return new Builder();
Expand Down