ThirdPartySlotServiceInterface thirdPartySlotService =
user.getService(DfpService.V201208.THIRD_PARTY_SLOT_SERVICE);
// Create a statement to get one active third party slot.
Statement filterStatement =
new StatementBuilder("WHERE status = :status LIMIT 1")
.putValue("status", ThirdPartySlotStatus.ACTIVE.toString()).toStatement();
// Get third party slot by statement.
ThirdPartySlotPage page =
thirdPartySlotService.getThirdPartySlotsByStatement(filterStatement);