blob: e44ebb6ea23d6705a619fa62a915ffa8e9ae0b5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import type { CustomerContact } from "./CustomerContact"
import type { User } from "./User"
export type Customer = {
/**
* Guid id for customer
*/
id: string,
/**
* The name of the company
*/
name: string,
/**
* Responsible contact in the current tenant
*/
tenantContact: User,
/**
* The customers main contact
*/
mainContact: CustomerContact,
}
|