* The detailed data of the Proton Ops file. *
*/ private ServiceSyncConfig serviceSyncConfig; /** ** The detailed data of the Proton Ops file. *
* * @param serviceSyncConfig * The detailed data of the Proton Ops file. */ public void setServiceSyncConfig(ServiceSyncConfig serviceSyncConfig) { this.serviceSyncConfig = serviceSyncConfig; } /** ** The detailed data of the Proton Ops file. *
* * @return The detailed data of the Proton Ops file. */ public ServiceSyncConfig getServiceSyncConfig() { return this.serviceSyncConfig; } /** ** The detailed data of the Proton Ops file. *
* * @param serviceSyncConfig * The detailed data of the Proton Ops file. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateServiceSyncConfigResult withServiceSyncConfig(ServiceSyncConfig serviceSyncConfig) { setServiceSyncConfig(serviceSyncConfig); 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 (getServiceSyncConfig() != null) sb.append("ServiceSyncConfig: ").append(getServiceSyncConfig()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateServiceSyncConfigResult == false) return false; UpdateServiceSyncConfigResult other = (UpdateServiceSyncConfigResult) obj; if (other.getServiceSyncConfig() == null ^ this.getServiceSyncConfig() == null) return false; if (other.getServiceSyncConfig() != null && other.getServiceSyncConfig().equals(this.getServiceSyncConfig()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getServiceSyncConfig() == null) ? 0 : getServiceSyncConfig().hashCode()); return hashCode; } @Override public UpdateServiceSyncConfigResult clone() { try { return (UpdateServiceSyncConfigResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }