Skip to content

Commit

Permalink
Fix FPD decoding Exception (#1155)
Browse files Browse the repository at this point in the history
  • Loading branch information
DGarbar authored Feb 16, 2021
1 parent 95c7bf4 commit 6ab4184
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.prebid.server.proto.openrtb.ext.request;

import com.fasterxml.jackson.databind.node.ObjectNode;
import com.fasterxml.jackson.databind.JsonNode;
import lombok.AllArgsConstructor;
import lombok.Value;

Expand All @@ -11,10 +11,10 @@ public class ExtBidderConfigFpd {
/**
* Defines the contract for bidrequest.ext.prebid.bidderconfig.config.fpd.context
*/
ObjectNode context;
JsonNode context;

/**
* Defines the contract for bidrequest.ext.prebid.bidderconfig.config.fpd.user
*/
ObjectNode user;
JsonNode user;
}

0 comments on commit 6ab4184

Please sign in to comment.