File

src/app/contacts/shared/contact.model.ts

Index

Properties

Properties

address
address: Address
Type : Address
advertiserId
advertiserId: number
Type : number
company
company: string
Type : string
contactsBookId
contactsBookId: number
Type : number
emails
emails: Email[]
Type : Email[]
fax
fax: string
Type : string
groupIds
groupIds: number[]
Type : number[]
groups
groups: Group[]
Type : Group[]
id
id: number
Type : number
jobPosition
jobPosition: string
Type : string
language
language: string
Type : string
name
name: string
Type : string
note
note: string
Type : string
phones
phones: Phone[]
Type : Phone[]
skypeId
skypeId: string
Type : string
timeZone
timeZone: string
Type : string
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
}

results matching ""

    No results matching ""