* A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 items in * the list. *
*/ private java.util.List* The ID of the recommendation. *
*/ private String recommendationId; /** ** A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 items in * the list. *
* * @return A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 * items in the list. */ public java.util.List* A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 items in * the list. *
* * @param itemList * A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 * items in the list. */ public void setItemList(java.util.Collection* A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 items in * the list. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setItemList(java.util.Collection)} or {@link #withItemList(java.util.Collection)} if you want to override * the existing values. *
* * @param itemList * A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 * items in the list. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRecommendationsResult withItemList(PredictedItem... itemList) { if (this.itemList == null) { setItemList(new java.util.ArrayList* A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 items in * the list. *
* * @param itemList * A list of recommendations sorted in descending order by prediction score. There can be a maximum of 500 * items in the list. * @return Returns a reference to this object so that method calls can be chained together. */ public GetRecommendationsResult withItemList(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 GetRecommendationsResult 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 (getItemList() != null) sb.append("ItemList: ").append(getItemList()).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 GetRecommendationsResult == false) return false; GetRecommendationsResult other = (GetRecommendationsResult) obj; if (other.getItemList() == null ^ this.getItemList() == null) return false; if (other.getItemList() != null && other.getItemList().equals(this.getItemList()) == 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 + ((getItemList() == null) ? 0 : getItemList().hashCode()); hashCode = prime * hashCode + ((getRecommendationId() == null) ? 0 : getRecommendationId().hashCode()); return hashCode; } @Override public GetRecommendationsResult clone() { try { return (GetRecommendationsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }