private RequestTimeMapDepartureSearch(string Id, Coords Coords, RequestTransportation Transportation, int?TravelTime, DateTime?DepartureTime, List <RequestTimeMapProperty> Properties, RequestRangeNoMaxResults Range)
        {
            this.Id = Id;

            this.Coords = Coords;

            this.Transportation = Transportation;

            this.TravelTime = TravelTime;

            this.DepartureTime = DepartureTime;

            this.Properties = Properties;

            this.Range = Range;
        }
 /// <summary>
 /// Sets value for RequestTimeMapDepartureSearch.Range property.
 /// </summary>
 /// <param name="value">Range</param>
 public RequestTimeMapDepartureSearchBuilder Range(RequestRangeNoMaxResults value)
 {
     _Range = value;
     return(this);
 }