samls-js-integration 1.0.60 → 1.0.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
import { StreetDirectionEnum, StreetSuffixEnum } from '../Enums';
|
|
2
2
|
export declare class AddressDetailModel {
|
|
3
3
|
coreListingId: number;
|
|
4
|
-
city: string;
|
|
5
|
-
country: string;
|
|
6
|
-
county: string;
|
|
7
|
-
crossStreet: string;
|
|
8
|
-
directions: string;
|
|
9
|
-
elementarySchool: string;
|
|
10
|
-
elementarySchoolDistrict: string;
|
|
11
|
-
fullAddress: string;
|
|
12
|
-
highSchool: string;
|
|
13
|
-
highSchoolDistrict: string;
|
|
4
|
+
city: string | null;
|
|
5
|
+
country: string | null;
|
|
6
|
+
county: string | null;
|
|
7
|
+
crossStreet: string | null;
|
|
8
|
+
directions: string | null;
|
|
9
|
+
elementarySchool: string | null;
|
|
10
|
+
elementarySchoolDistrict: string | null;
|
|
11
|
+
fullAddress: string | null;
|
|
12
|
+
highSchool: string | null;
|
|
13
|
+
highSchoolDistrict: string | null;
|
|
14
14
|
latitude: number | null;
|
|
15
|
-
locationDescription: string;
|
|
15
|
+
locationDescription: string | null;
|
|
16
16
|
longitude: number | null;
|
|
17
|
-
middleOrJuniorSchool: string;
|
|
18
|
-
middleOrJuniorSchoolDistrict: string;
|
|
19
|
-
neighborhood: string;
|
|
20
|
-
postalCode: string;
|
|
17
|
+
middleOrJuniorSchool: string | null;
|
|
18
|
+
middleOrJuniorSchoolDistrict: string | null;
|
|
19
|
+
neighborhood: string | null;
|
|
20
|
+
postalCode: string | null;
|
|
21
21
|
seniorCommunityYN: boolean | null;
|
|
22
|
-
stateOrProvince: string;
|
|
22
|
+
stateOrProvince: string | null;
|
|
23
23
|
streetDirPrefix: StreetDirectionEnum | null;
|
|
24
24
|
streetDirSuffix: StreetDirectionEnum | null;
|
|
25
|
-
streetName: string;
|
|
26
|
-
streetNumber: string;
|
|
25
|
+
streetName: string | null;
|
|
26
|
+
streetNumber: string | null;
|
|
27
27
|
streetSuffix: StreetSuffixEnum | null;
|
|
28
|
-
subDivision: string;
|
|
29
|
-
unitNumber: string;
|
|
30
|
-
waterBodyName: string;
|
|
31
|
-
waterfrontProximity: string;
|
|
28
|
+
subDivision: string | null;
|
|
29
|
+
unitNumber: string | null;
|
|
30
|
+
waterBodyName: string | null;
|
|
31
|
+
waterfrontProximity: string | null;
|
|
32
32
|
waterfrontYN: boolean | null;
|
|
33
|
-
zoning: string;
|
|
34
|
-
samlsFullAddress: string;
|
|
35
|
-
samlsPartialAddress: string;
|
|
33
|
+
zoning: string | null;
|
|
34
|
+
samlsFullAddress: string | null;
|
|
35
|
+
samlsPartialAddress: string | null;
|
|
36
36
|
polygonCollection: number[];
|
|
37
37
|
}
|
|
@@ -4,38 +4,38 @@ exports.AddressDetailModel = void 0;
|
|
|
4
4
|
class AddressDetailModel {
|
|
5
5
|
constructor() {
|
|
6
6
|
this.coreListingId = 0;
|
|
7
|
-
this.city =
|
|
8
|
-
this.country =
|
|
9
|
-
this.county =
|
|
10
|
-
this.crossStreet =
|
|
11
|
-
this.directions =
|
|
12
|
-
this.elementarySchool =
|
|
13
|
-
this.elementarySchoolDistrict =
|
|
14
|
-
this.fullAddress =
|
|
15
|
-
this.highSchool =
|
|
16
|
-
this.highSchoolDistrict =
|
|
7
|
+
this.city = null;
|
|
8
|
+
this.country = null;
|
|
9
|
+
this.county = null;
|
|
10
|
+
this.crossStreet = null;
|
|
11
|
+
this.directions = null;
|
|
12
|
+
this.elementarySchool = null;
|
|
13
|
+
this.elementarySchoolDistrict = null;
|
|
14
|
+
this.fullAddress = null;
|
|
15
|
+
this.highSchool = null;
|
|
16
|
+
this.highSchoolDistrict = null;
|
|
17
17
|
this.latitude = null;
|
|
18
|
-
this.locationDescription =
|
|
18
|
+
this.locationDescription = null;
|
|
19
19
|
this.longitude = null;
|
|
20
|
-
this.middleOrJuniorSchool =
|
|
21
|
-
this.middleOrJuniorSchoolDistrict =
|
|
22
|
-
this.neighborhood =
|
|
23
|
-
this.postalCode =
|
|
20
|
+
this.middleOrJuniorSchool = null;
|
|
21
|
+
this.middleOrJuniorSchoolDistrict = null;
|
|
22
|
+
this.neighborhood = null;
|
|
23
|
+
this.postalCode = null;
|
|
24
24
|
this.seniorCommunityYN = null;
|
|
25
|
-
this.stateOrProvince =
|
|
25
|
+
this.stateOrProvince = null;
|
|
26
26
|
this.streetDirPrefix = null;
|
|
27
27
|
this.streetDirSuffix = null;
|
|
28
|
-
this.streetName =
|
|
29
|
-
this.streetNumber =
|
|
28
|
+
this.streetName = null;
|
|
29
|
+
this.streetNumber = null;
|
|
30
30
|
this.streetSuffix = null;
|
|
31
|
-
this.subDivision =
|
|
32
|
-
this.unitNumber =
|
|
33
|
-
this.waterBodyName =
|
|
34
|
-
this.waterfrontProximity =
|
|
31
|
+
this.subDivision = null;
|
|
32
|
+
this.unitNumber = null;
|
|
33
|
+
this.waterBodyName = null;
|
|
34
|
+
this.waterfrontProximity = null;
|
|
35
35
|
this.waterfrontYN = null;
|
|
36
|
-
this.zoning =
|
|
37
|
-
this.samlsFullAddress =
|
|
38
|
-
this.samlsPartialAddress =
|
|
36
|
+
this.zoning = null;
|
|
37
|
+
this.samlsFullAddress = null;
|
|
38
|
+
this.samlsPartialAddress = null;
|
|
39
39
|
this.polygonCollection = [];
|
|
40
40
|
}
|
|
41
41
|
}
|