* The PhoneNumberArn or PoolArn that the keyword was associated with. *
*/ private String originationIdentityArn; /** ** The PhoneNumberId or PoolId that the keyword was associated with. *
*/ private String originationIdentity; /** ** The keyword that was deleted. *
*/ private String keyword; /** ** The message that was associated with the deleted keyword. *
*/ private String keywordMessage; /** ** The action that was associated with the deleted keyword. *
*/ private String keywordAction; /** ** The PhoneNumberArn or PoolArn that the keyword was associated with. *
* * @param originationIdentityArn * The PhoneNumberArn or PoolArn that the keyword was associated with. */ public void setOriginationIdentityArn(String originationIdentityArn) { this.originationIdentityArn = originationIdentityArn; } /** ** The PhoneNumberArn or PoolArn that the keyword was associated with. *
* * @return The PhoneNumberArn or PoolArn that the keyword was associated with. */ public String getOriginationIdentityArn() { return this.originationIdentityArn; } /** ** The PhoneNumberArn or PoolArn that the keyword was associated with. *
* * @param originationIdentityArn * The PhoneNumberArn or PoolArn that the keyword was associated with. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteKeywordResult withOriginationIdentityArn(String originationIdentityArn) { setOriginationIdentityArn(originationIdentityArn); return this; } /** ** The PhoneNumberId or PoolId that the keyword was associated with. *
* * @param originationIdentity * The PhoneNumberId or PoolId that the keyword was associated with. */ public void setOriginationIdentity(String originationIdentity) { this.originationIdentity = originationIdentity; } /** ** The PhoneNumberId or PoolId that the keyword was associated with. *
* * @return The PhoneNumberId or PoolId that the keyword was associated with. */ public String getOriginationIdentity() { return this.originationIdentity; } /** ** The PhoneNumberId or PoolId that the keyword was associated with. *
* * @param originationIdentity * The PhoneNumberId or PoolId that the keyword was associated with. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteKeywordResult withOriginationIdentity(String originationIdentity) { setOriginationIdentity(originationIdentity); return this; } /** ** The keyword that was deleted. *
* * @param keyword * The keyword that was deleted. */ public void setKeyword(String keyword) { this.keyword = keyword; } /** ** The keyword that was deleted. *
* * @return The keyword that was deleted. */ public String getKeyword() { return this.keyword; } /** ** The keyword that was deleted. *
* * @param keyword * The keyword that was deleted. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteKeywordResult withKeyword(String keyword) { setKeyword(keyword); return this; } /** ** The message that was associated with the deleted keyword. *
* * @param keywordMessage * The message that was associated with the deleted keyword. */ public void setKeywordMessage(String keywordMessage) { this.keywordMessage = keywordMessage; } /** ** The message that was associated with the deleted keyword. *
* * @return The message that was associated with the deleted keyword. */ public String getKeywordMessage() { return this.keywordMessage; } /** ** The message that was associated with the deleted keyword. *
* * @param keywordMessage * The message that was associated with the deleted keyword. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteKeywordResult withKeywordMessage(String keywordMessage) { setKeywordMessage(keywordMessage); return this; } /** ** The action that was associated with the deleted keyword. *
* * @param keywordAction * The action that was associated with the deleted keyword. * @see KeywordAction */ public void setKeywordAction(String keywordAction) { this.keywordAction = keywordAction; } /** ** The action that was associated with the deleted keyword. *
* * @return The action that was associated with the deleted keyword. * @see KeywordAction */ public String getKeywordAction() { return this.keywordAction; } /** ** The action that was associated with the deleted keyword. *
* * @param keywordAction * The action that was associated with the deleted keyword. * @return Returns a reference to this object so that method calls can be chained together. * @see KeywordAction */ public DeleteKeywordResult withKeywordAction(String keywordAction) { setKeywordAction(keywordAction); return this; } /** ** The action that was associated with the deleted keyword. *
* * @param keywordAction * The action that was associated with the deleted keyword. * @return Returns a reference to this object so that method calls can be chained together. * @see KeywordAction */ public DeleteKeywordResult withKeywordAction(KeywordAction keywordAction) { this.keywordAction = keywordAction.toString(); 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 (getOriginationIdentityArn() != null) sb.append("OriginationIdentityArn: ").append(getOriginationIdentityArn()).append(","); if (getOriginationIdentity() != null) sb.append("OriginationIdentity: ").append(getOriginationIdentity()).append(","); if (getKeyword() != null) sb.append("Keyword: ").append(getKeyword()).append(","); if (getKeywordMessage() != null) sb.append("KeywordMessage: ").append(getKeywordMessage()).append(","); if (getKeywordAction() != null) sb.append("KeywordAction: ").append(getKeywordAction()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DeleteKeywordResult == false) return false; DeleteKeywordResult other = (DeleteKeywordResult) obj; if (other.getOriginationIdentityArn() == null ^ this.getOriginationIdentityArn() == null) return false; if (other.getOriginationIdentityArn() != null && other.getOriginationIdentityArn().equals(this.getOriginationIdentityArn()) == false) return false; if (other.getOriginationIdentity() == null ^ this.getOriginationIdentity() == null) return false; if (other.getOriginationIdentity() != null && other.getOriginationIdentity().equals(this.getOriginationIdentity()) == false) return false; if (other.getKeyword() == null ^ this.getKeyword() == null) return false; if (other.getKeyword() != null && other.getKeyword().equals(this.getKeyword()) == false) return false; if (other.getKeywordMessage() == null ^ this.getKeywordMessage() == null) return false; if (other.getKeywordMessage() != null && other.getKeywordMessage().equals(this.getKeywordMessage()) == false) return false; if (other.getKeywordAction() == null ^ this.getKeywordAction() == null) return false; if (other.getKeywordAction() != null && other.getKeywordAction().equals(this.getKeywordAction()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getOriginationIdentityArn() == null) ? 0 : getOriginationIdentityArn().hashCode()); hashCode = prime * hashCode + ((getOriginationIdentity() == null) ? 0 : getOriginationIdentity().hashCode()); hashCode = prime * hashCode + ((getKeyword() == null) ? 0 : getKeyword().hashCode()); hashCode = prime * hashCode + ((getKeywordMessage() == null) ? 0 : getKeywordMessage().hashCode()); hashCode = prime * hashCode + ((getKeywordAction() == null) ? 0 : getKeywordAction().hashCode()); return hashCode; } @Override public DeleteKeywordResult clone() { try { return (DeleteKeywordResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }