Skip to content

Commit

Permalink
feat(package): added new germand addreess interface
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyNahas committed Dec 23, 2019
1 parent a479304 commit 83a5ab4
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import {Location} from './location.interface';

/**
* @author Anthony Nahas
* @since 23.12.19
* @version 1.0
*/
export interface GermanAddress {
id?: string;
gmID: string;
placeID: string;
name?: string;
icon?: string;
displayAddress: string;
postalCode: number;
streetNumber: number;
streetName: string;
sublocality: string;
locality: string;
state: string;
country: string;
vicinity?: string;
url?: string;
location?: Location;
}

0 comments on commit 83a5ab4

Please sign in to comment.