public override int GetHashCode()
        {
            int hashCode = -1456381957;

            if (Context != null)
            {
                hashCode += Context.GetHashCode();
            }

            if (TeamMemberBookingProfiles != null)
            {
                hashCode += TeamMemberBookingProfiles.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 ListTeamMemberBookingProfilesResponse other &&
                   ((Context == null && other.Context == null) || (Context?.Equals(other.Context) == true)) &&
                   ((TeamMemberBookingProfiles == null && other.TeamMemberBookingProfiles == null) || (TeamMemberBookingProfiles?.Equals(other.TeamMemberBookingProfiles) == true)) &&
                   ((Cursor == null && other.Cursor == null) || (Cursor?.Equals(other.Cursor) == true)) &&
                   ((Errors == null && other.Errors == null) || (Errors?.Equals(other.Errors) == true)));
        }