/// <summary>
 /// Initializes a new instance of the <see cref="RateCenterResponse" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="name">name.</param>
 /// <param name="alternateName">alternateName.</param>
 /// <param name="areaName1">areaName1.</param>
 /// <param name="geometry">geometry.</param>
 /// <param name="areaCodeInfoList">areaCodeInfoList.</param>
 /// <param name="matchedAddress">matchedAddress.</param>
 /// <param name="match">match.</param>
 /// <param name="county">county.</param>
 /// <param name="count">count.</param>
 /// <param name="productCode">productCode.</param>
 public RateCenterResponse(string id = default(string), string name = default(string), string alternateName = default(string), string areaName1 = default(string), Geometry geometry = default(Geometry), List <AreaCodeInfo> areaCodeInfoList = default(List <AreaCodeInfo>), Address matchedAddress = default(Address), Match match = default(Match), County county = default(County), int count = default(int), string productCode = default(string))
 {
     this.Id               = id;
     this.Name             = name;
     this.AlternateName    = alternateName;
     this.AreaName1        = areaName1;
     this.Geometry         = geometry;
     this.AreaCodeInfoList = areaCodeInfoList;
     this.MatchedAddress   = matchedAddress;
     this.Match            = match;
     this.County           = county;
     this.Count            = count;
     this.ProductCode      = productCode;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PSAPResponse" /> class.
 /// </summary>
 /// <param name="psapId">psapId.</param>
 /// <param name="fccId">fccId.</param>
 /// <param name="type">type.</param>
 /// <param name="count">count.</param>
 /// <param name="agency">agency.</param>
 /// <param name="phone">phone.</param>
 /// <param name="county">county.</param>
 /// <param name="coverage">coverage.</param>
 /// <param name="contactPerson">contactPerson.</param>
 /// <param name="siteDetails">siteDetails.</param>
 /// <param name="mailingAddress">mailingAddress.</param>
 public PSAPResponse(string psapId = default(string), string fccId = default(string), string type = default(string), int count = default(int), string agency = default(string), string phone = default(string), County county = default(County), Coverage coverage = default(Coverage), ContactPerson contactPerson = default(ContactPerson), SiteDetails siteDetails = default(SiteDetails), AHJmailingAddress mailingAddress = default(AHJmailingAddress))
 {
     this.PsapId         = psapId;
     this.FccId          = fccId;
     this.Type           = type;
     this.Count          = count;
     this.Agency         = agency;
     this.Phone          = phone;
     this.County         = county;
     this.Coverage       = coverage;
     this.ContactPerson  = contactPerson;
     this.SiteDetails    = siteDetails;
     this.MailingAddress = mailingAddress;
 }