private ResponseGeocodingProperties(string Name, string Label, double?Score, string HouseNumber, string Street, string Region, string RegionCode, string Neighbourhood, string County, string Macroregion, string City, string Country, string CountryCode, string Continent, string Postcode, ResponseMapInfoFeatures Features)
        {
            this.Name = Name;

            this.Label = Label;

            this.Score = Score;

            this.HouseNumber = HouseNumber;

            this.Street = Street;

            this.Region = Region;

            this.RegionCode = RegionCode;

            this.Neighbourhood = Neighbourhood;

            this.County = County;

            this.Macroregion = Macroregion;

            this.City = City;

            this.Country = Country;

            this.CountryCode = CountryCode;

            this.Continent = Continent;

            this.Postcode = Postcode;

            this.Features = Features;
        }
        private ResponseMapInfoMap(string Name, ResponseMapInfoFeatures Features)
        {
            this.Name = Name;

            this.Features = Features;
        }
 /// <summary>
 /// Sets value for ResponseMapInfoMap.Features property.
 /// </summary>
 /// <param name="value">Features</param>
 public ResponseMapInfoMapBuilder Features(ResponseMapInfoFeatures value)
 {
     _Features = value;
     return(this);
 }
 /// <summary>
 /// Sets value for ResponseGeocodingProperties.Features property.
 /// </summary>
 /// <param name="value">Features</param>
 public ResponseGeocodingPropertiesBuilder Features(ResponseMapInfoFeatures value)
 {
     _Features = value;
     return(this);
 }