File

src/app/core/data/models/contact-person.model.ts

Index

Properties

Properties

companyName
companyName: string
Type : string
contactInformation
contactInformation: string
Type : string
Optional
corporateDivision
corporateDivision: string
Type : string
department
department: string
Type : string
forename
forename: string
Type : string
id
id: number
Type : number
Optional
role
role: string
Type : string
salutation
salutation: Salutation
Type : Salutation
sector
sector: string
Type : string
surname
surname: string
Type : string
title
title: string
Type : string
export enum Salutation {
  Frau = 'FRAU',
  Herr = 'HERR',
  Divers = 'DIVERS',
}

export interface ContactPerson {
  id?: number;
  salutation: Salutation;
  title: string;
  forename: string;
  surname: string;
  companyName: string;
  role: string;
  sector: string;
  department: string;
  corporateDivision: string;
  contactInformation?: string;
}

result-matching ""

    No results matching ""