/// <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; }