* The unique identifier for the custom data identifier that was created. *
*/ private String customDataIdentifierId; /** ** The unique identifier for the custom data identifier that was created. *
* * @param customDataIdentifierId * The unique identifier for the custom data identifier that was created. */ public void setCustomDataIdentifierId(String customDataIdentifierId) { this.customDataIdentifierId = customDataIdentifierId; } /** ** The unique identifier for the custom data identifier that was created. *
* * @return The unique identifier for the custom data identifier that was created. */ public String getCustomDataIdentifierId() { return this.customDataIdentifierId; } /** ** The unique identifier for the custom data identifier that was created. *
* * @param customDataIdentifierId * The unique identifier for the custom data identifier that was created. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCustomDataIdentifierResult withCustomDataIdentifierId(String customDataIdentifierId) { setCustomDataIdentifierId(customDataIdentifierId); 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 (getCustomDataIdentifierId() != null) sb.append("CustomDataIdentifierId: ").append(getCustomDataIdentifierId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateCustomDataIdentifierResult == false) return false; CreateCustomDataIdentifierResult other = (CreateCustomDataIdentifierResult) obj; if (other.getCustomDataIdentifierId() == null ^ this.getCustomDataIdentifierId() == null) return false; if (other.getCustomDataIdentifierId() != null && other.getCustomDataIdentifierId().equals(this.getCustomDataIdentifierId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCustomDataIdentifierId() == null) ? 0 : getCustomDataIdentifierId().hashCode()); return hashCode; } @Override public CreateCustomDataIdentifierResult clone() { try { return (CreateCustomDataIdentifierResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }