24 lines
556 B
TypeScript
24 lines
556 B
TypeScript
export type Contact = {
|
|
id: number
|
|
'@id'?: string
|
|
firstName: string | null
|
|
lastName: string | null
|
|
jobTitle: string | null
|
|
email: string | null
|
|
phonePrimary: string | null
|
|
phoneSecondary: string | null
|
|
client?: string | null
|
|
prospect?: string | null
|
|
}
|
|
|
|
export type ContactWrite = {
|
|
firstName: string | null
|
|
lastName: string | null
|
|
jobTitle: string | null
|
|
email: string | null
|
|
phonePrimary: string | null
|
|
phoneSecondary: string | null
|
|
client?: string | null
|
|
prospect?: string | null
|
|
}
|