getScore
getScore()
The getScore method returns one of the following:
*
*
*
Return value
The getScore method returns an integer representing the score of the offer.
Example
The following example prints the score of an offer.
for(Offer offer : offerList.getRecommendedOffers())
{
// print offer
System.out.println("Offer Score:"+offer.getOfferScore());
}