/// <summary>
///     Returns true if self and the provided entity have the same Id values
///     and the Ids are not of the default Id value
/// </summary>
        protected bool HasSameNonDefaultIdAs(UpdateSchedulesResponse compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.UpdateSchedulesResponseKey.Equals(compareTo.UpdateSchedulesResponseKey));
        }
/// <summary>
/// Copies the current object to a new instance
/// </summary>
/// <param name="deep">Copy members that refer to objects external to this class (not dependent)</param>
/// <param name="copiedObjects">Objects that should be reused</param>
/// <param name="asNew">Copy the current object as a new one, ready to be persisted, along all its members.</param>
/// <param name="reuseNestedObjects">If asNew is true, this flag if set, forces the reuse of all external objects.</param>
/// <param name="copy">Optional - An existing [UpdateSchedulesResponse] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual UpdateSchedulesResponse Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, UpdateSchedulesResponse copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((UpdateSchedulesResponse)copiedObjects[this]);
            }
            copy = copy ?? new UpdateSchedulesResponse();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.UpdateSchedulesResponseKey = this.UpdateSchedulesResponseKey;
            }
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            copy.flightRoutes = new List <FlightRoute>();
            if (deep && this.flightRoutes != null)
            {
                foreach (var __item in this.flightRoutes)
                {
                    if (!copiedObjects.Contains(__item))
                    {
                        if (asNew && reuseNestedObjects)
                        {
                            copy.AddFlightRoutes(__item);
                        }
                        else
                        {
                            copy.AddFlightRoutes(__item.Copy(deep, copiedObjects, asNew));
                        }
                    }
                    else
                    {
                        copy.AddFlightRoutes((FlightRoute)copiedObjects[__item]);
                    }
                }
            }
            copy.marineRoutes = new List <MarineRoute>();
            if (deep && this.marineRoutes != null)
            {
                foreach (var __item in this.marineRoutes)
                {
                    if (!copiedObjects.Contains(__item))
                    {
                        if (asNew && reuseNestedObjects)
                        {
                            copy.AddMarineRoutes(__item);
                        }
                        else
                        {
                            copy.AddMarineRoutes(__item.Copy(deep, copiedObjects, asNew));
                        }
                    }
                    else
                    {
                        copy.AddMarineRoutes((MarineRoute)copiedObjects[__item]);
                    }
                }
            }
            return(copy);
        }