public override int GetHashCode() { int hashCode = 232618959; if (Context != null) { hashCode += Context.GetHashCode(); } if (WorkweekConfigs != null) { hashCode += WorkweekConfigs.GetHashCode(); } if (Cursor != null) { hashCode += Cursor.GetHashCode(); } if (Errors != null) { hashCode += Errors.GetHashCode(); } return(hashCode); }
public override bool Equals(object obj) { if (obj == null) { return(false); } if (obj == this) { return(true); } return(obj is ListWorkweekConfigsResponse other && ((Context == null && other.Context == null) || (Context?.Equals(other.Context) == true)) && ((WorkweekConfigs == null && other.WorkweekConfigs == null) || (WorkweekConfigs?.Equals(other.WorkweekConfigs) == true)) && ((Cursor == null && other.Cursor == null) || (Cursor?.Equals(other.Cursor) == true)) && ((Errors == null && other.Errors == null) || (Errors?.Equals(other.Errors) == true))); }