/// <summary> /// Returns true if objects are equal /// </summary> public bool Equals(CreateMigrationTaskRequest input) { if (input == null) { return(false); } return ( this.Body == input.Body || (this.Body != null && this.Body.Equals(input.Body)) ); }
/// <summary> /// Returns true if objects are equal /// </summary> public bool Equals(CreateMigrationTaskRequest input) { if (input == null) { return(false); } return (( this.ContentType == input.ContentType || (this.ContentType != null && this.ContentType.Equals(input.ContentType)) ) && ( this.Body == input.Body || (this.Body != null && this.Body.Equals(input.Body)) )); }