Skip to content

Commit 83a5ab4

Browse files
committed
feat(package): added new germand addreess interface
1 parent a479304 commit 83a5ab4

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)