* A list of items in order of most likely interest to the user. The maximum is 500. *
*/ private java.util.List* The ID of the recommendation. *
*/ private String recommendationId; /** ** A list of items in order of most likely interest to the user. The maximum is 500. *
* * @return A list of items in order of most likely interest to the user. The maximum is 500. */ public java.util.List* A list of items in order of most likely interest to the user. The maximum is 500. *
* * @param personalizedRanking * A list of items in order of most likely interest to the user. The maximum is 500. */ public void setPersonalizedRanking(java.util.Collection* A list of items in order of most likely interest to the user. The maximum is 500. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setPersonalizedRanking(java.util.Collection)} or {@link #withPersonalizedRanking(java.util.Collection)} * if you want to override the existing values. *
* * @param personalizedRanking * A list of items in order of most likely interest to the user. The maximum is 500. * @return Returns a reference to this object so that method calls can be chained together. */ public GetPersonalizedRankingResult withPersonalizedRanking(PredictedItem... personalizedRanking) { if (this.personalizedRanking == null) { setPersonalizedRanking(new java.util.ArrayList* A list of items in order of most likely interest to the user. The maximum is 500. *
* * @param personalizedRanking * A list of items in order of most likely interest to the user. The maximum is 500. * @return Returns a reference to this object so that method calls can be chained together. */ public GetPersonalizedRankingResult withPersonalizedRanking(java.util.Collection* The ID of the recommendation. *
* * @param recommendationId * The ID of the recommendation. */ public void setRecommendationId(String recommendationId) { this.recommendationId = recommendationId; } /** ** The ID of the recommendation. *
* * @return The ID of the recommendation. */ public String getRecommendationId() { return this.recommendationId; } /** ** The ID of the recommendation. *
* * @param recommendationId * The ID of the recommendation. * @return Returns a reference to this object so that method calls can be chained together. */ public GetPersonalizedRankingResult withRecommendationId(String recommendationId) { setRecommendationId(recommendationId); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getPersonalizedRanking() != null) sb.append("PersonalizedRanking: ").append(getPersonalizedRanking()).append(","); if (getRecommendationId() != null) sb.append("RecommendationId: ").append(getRecommendationId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetPersonalizedRankingResult == false) return false; GetPersonalizedRankingResult other = (GetPersonalizedRankingResult) obj; if (other.getPersonalizedRanking() == null ^ this.getPersonalizedRanking() == null) return false; if (other.getPersonalizedRanking() != null && other.getPersonalizedRanking().equals(this.getPersonalizedRanking()) == false) return false; if (other.getRecommendationId() == null ^ this.getRecommendationId() == null) return false; if (other.getRecommendationId() != null && other.getRecommendationId().equals(this.getRecommendationId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPersonalizedRanking() == null) ? 0 : getPersonalizedRanking().hashCode()); hashCode = prime * hashCode + ((getRecommendationId() == null) ? 0 : getRecommendationId().hashCode()); return hashCode; } @Override public GetPersonalizedRankingResult clone() { try { return (GetPersonalizedRankingResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }