/// <summary>
 /// Initializes a new instance of the <see cref="FireRiskResponse" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</param>
 /// <param name="State">State.</param>
 /// <param name="FireShed">FireShed.</param>
 /// <param name="MatchedAddress">MatchedAddress.</param>
 public FireRiskResponse(string ObjectId = null, CommonState State = null, FireShed FireShed = null, MatchedAddress MatchedAddress = null)
 {
     this.ObjectId       = ObjectId;
     this.State          = State;
     this.FireShed       = FireShed;
     this.MatchedAddress = MatchedAddress;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FloodRiskLocationResponse" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</param>
 /// <param name="State">State.</param>
 /// <param name="FloodZone">FloodZone.</param>
 /// <param name="Community">Community.</param>
 /// <param name="Boundary">Boundary.</param>
 public FloodRiskLocationResponse(string ObjectId = null, CommonState State = null, FloodZone FloodZone = null, Community Community = null, FloodBoundary Boundary = null)
 {
     this.ObjectId  = ObjectId;
     this.State     = State;
     this.FloodZone = FloodZone;
     this.Community = Community;
     this.Boundary  = Boundary;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="FloodRiskResponse" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</param>
 /// <param name="State">State.</param>
 /// <param name="FloodZone">FloodZone.</param>
 /// <param name="Community">Community.</param>
 /// <param name="Boundary">Boundary.</param>
 /// <param name="MatchedAddress">MatchedAddress.</param>
 public FloodRiskResponse(string ObjectId = null, CommonState State = null, FloodZone FloodZone = null, Community Community = null, FloodBoundary Boundary = null, MatchedAddress MatchedAddress = null)
 {
     this.ObjectId       = ObjectId;
     this.State          = State;
     this.FloodZone      = FloodZone;
     this.Community      = Community;
     this.Boundary       = Boundary;
     this.MatchedAddress = MatchedAddress;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CarrierRouteResponse" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</param>
 /// <param name="MatchedAddress">MatchedAddress.</param>
 /// <param name="Code">Code.</param>
 /// <param name="State">State.</param>
 /// <param name="CountyFips">CountyFips.</param>
 /// <param name="PostalTown">PostalTown.</param>
 /// <param name="PostCode">PostCode.</param>
 /// <param name="RouteDelivery">RouteDelivery.</param>
 /// <param name="Boundary">Boundary.</param>
 /// <param name="BoundaryRef">BoundaryRef.</param>
 public CarrierRouteResponse(string ObjectId = null, MatchedAddress MatchedAddress = null, string Code = null, CommonState State = null, string CountyFips = null, string PostalTown = null, string PostCode = null, RouteDelivery RouteDelivery = null, RouteBoundary Boundary = null, string BoundaryRef = null)
 {
     this.ObjectId       = ObjectId;
     this.MatchedAddress = MatchedAddress;
     this.Code           = Code;
     this.State          = State;
     this.CountyFips     = CountyFips;
     this.PostalTown     = PostalTown;
     this.PostCode       = PostCode;
     this.RouteDelivery  = RouteDelivery;
     this.Boundary       = Boundary;
     this.BoundaryRef    = BoundaryRef;
 }
예제 #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FireRiskLocationResponse" /> class.
 /// </summary>
 /// <param name="ObjectId">ObjectId.</param>
 /// <param name="State">State.</param>
 /// <param name="FireShed">FireShed.</param>
 public FireRiskLocationResponse(string ObjectId = null, CommonState State = null, FireShed FireShed = null)
 {
     this.ObjectId = ObjectId;
     this.State    = State;
     this.FireShed = FireShed;
 }