We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a479304 commit 83a5ab4Copy full SHA for 83a5ab4
projects/angular-material-extensions/google-maps-autocomplete/src/lib/interfaces/germand.address.interface.ts
@@ -0,0 +1,25 @@
1
+import {Location} from './location.interface';
2
+
3
+/**
4
+ * @author Anthony Nahas
5
+ * @since 23.12.19
6
+ * @version 1.0
7
+ */
8
+export interface GermanAddress {
9
+ id?: string;
10
+ gmID: string;
11
+ placeID: string;
12
+ name?: string;
13
+ icon?: string;
14
+ displayAddress: string;
15
+ postalCode: number;
16
+ streetNumber: number;
17
+ streetName: string;
18
+ sublocality: string;
19
+ locality: string;
20
+ state: string;
21
+ country: string;
22
+ vicinity?: string;
23
+ url?: string;
24
+ location?: Location;
25
+}
0 commit comments