Files
tsclass/ts/business/contact.ts
2017-11-09 12:41:49 +01:00

24 lines
462 B
TypeScript

import { IAddress } from '../index'
export type TContactSalutation = 'Mr' | 'Ms' | 'Mrs'
export type TContactType = 'person' | 'company'
export type TContactTitle = 'Doctor' | 'Professor'
export interface IContact {
// =======
// general
// =======
salutation?: TContactSalutation
type: TContactType
title: TContactTitle
name: string
address: IAddress
// =========
// financial
// =========
vatId?: string
accountNumber?: string
}