Files
tsclass/dist/business/contact.d.ts
2017-11-09 02:20:21 +01:00

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;
}