17 lines
474 B
TypeScript
17 lines
474 B
TypeScript
export declare type TContactSalutation = 'Mr' | 'Ms' | 'Mrs';
|
|
export declare type TContactType = 'person' | 'company';
|
|
export declare type TContactTitle = 'Doctor' | 'Professor';
|
|
export interface IContact {
|
|
salutation?: TContactSalutation;
|
|
type: TContactType;
|
|
title: TContactTitle;
|
|
name: string;
|
|
streetName: string;
|
|
houseNumber: string;
|
|
postalCode: string;
|
|
city: string;
|
|
country: string;
|
|
vatId?: string;
|
|
accountNumber?: string;
|
|
}
|