示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PoiBoundary" /> class.
 /// </summary>
 /// <param name="objectId">objectId.</param>
 /// <param name="center">center.</param>
 /// <param name="countyfips">countyfips.</param>
 /// <param name="geometry">geometry.</param>
 /// <param name="poiList">poiList.</param>
 /// <param name="matchedAddress">matchedAddress.</param>
 /// <param name="id">id.</param>
 public PoiBoundary(string objectId = default(string), Center center = default(Center), string countyfips = default(string), ZonesPoiGeometry geometry = default(ZonesPoiGeometry), List <ZonesPoi> poiList = default(List <ZonesPoi>), ZonesAddress matchedAddress = default(ZonesAddress), string id = default(string))
 {
     this.ObjectId       = objectId;
     this.Center         = center;
     this.Countyfips     = countyfips;
     this.Geometry       = geometry;
     this.PoiList        = poiList;
     this.MatchedAddress = matchedAddress;
     this.Id             = id;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ZonesContactDetails" /> class.
 /// </summary>
 /// <param name="address">address.</param>
 /// <param name="propertyAddress">propertyAddress.</param>
 public ZonesContactDetails(ZonesAddress address = default(ZonesAddress), ZonesAddress propertyAddress = default(ZonesAddress))
 {
     this.Address         = address;
     this.PropertyAddress = propertyAddress;
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BasicBoundary" /> class.
 /// </summary>
 /// <param name="center">center.</param>
 /// <param name="distance">distance.</param>
 /// <param name="geometry">geometry.</param>
 /// <param name="matchedAddress">matchedAddress.</param>
 public BasicBoundary(BoundaryPoint center = default(BoundaryPoint), Distance distance = default(Distance), ZonesBoundaryGeometry geometry = default(ZonesBoundaryGeometry), ZonesAddress matchedAddress = default(ZonesAddress))
 {
     this.Center         = center;
     this.Distance       = distance;
     this.Geometry       = geometry;
     this.MatchedAddress = matchedAddress;
 }