src/app/contacts/shared/contact.model.ts
Properties |
| address |
address:
|
Type : Address
|
|
Defined in src/app/contacts/shared/contact.model.ts:8
|
| advertiserId |
advertiserId:
|
Type : number
|
|
Defined in src/app/contacts/shared/contact.model.ts:21
|
| company |
company:
|
Type : string
|
|
Defined in src/app/contacts/shared/contact.model.ts:17
|
| contactsBookId |
contactsBookId:
|
Type : number
|
|
Defined in src/app/contacts/shared/contact.model.ts:14
|
| emails |
emails:
|
Type : Email[]
|
|
Defined in src/app/contacts/shared/contact.model.ts:10
|
| fax |
fax:
|
Type : string
|
|
Defined in src/app/contacts/shared/contact.model.ts:15
|
| groupIds |
groupIds:
|
Type : number[]
|
|
Defined in src/app/contacts/shared/contact.model.ts:12
|
| groups |
groups:
|
Type : Group[]
|
|
Defined in src/app/contacts/shared/contact.model.ts:11
|
| id |
id:
|
Type : number
|
|
Defined in src/app/contacts/shared/contact.model.ts:22
|
| jobPosition |
jobPosition:
|
Type : string
|
|
Defined in src/app/contacts/shared/contact.model.ts:13
|
| language |
language:
|
Type : string
|
|
Defined in src/app/contacts/shared/contact.model.ts:18
|
| name |
name:
|
Type : string
|
|
Defined in src/app/contacts/shared/contact.model.ts:7
|
| note |
note:
|
Type : string
|
|
Defined in src/app/contacts/shared/contact.model.ts:20
|
| phones |
phones:
|
Type : Phone[]
|
|
Defined in src/app/contacts/shared/contact.model.ts:9
|
| skypeId |
skypeId:
|
Type : string
|
|
Defined in src/app/contacts/shared/contact.model.ts:16
|
| timeZone |
timeZone:
|
Type : string
|
|
Defined in src/app/contacts/shared/contact.model.ts:19
|
import {Group} from "./group.model";
import {Address} from "./address.model";
import {Phone} from "./phone.model";
import {Email} from "./email.model";
export interface Contact {
name: string
address: Address
phones: Phone[]
emails: Email[]
groups: Group[]
groupIds?: number[]
jobPosition?: string
contactsBookId?: number
fax?: string
skypeId?: string
company?: string
language?: string
timeZone?: string
note?: string
advertiserId?: number
id?: number
}