UNPKG
ix-entities
Version:
latest (1.2.1)
1.2.1
IX entities in typescript format. This includes: - Customer
ix-entities
/
lib
/
dto
/
customer-create-request.d.ts
8 lines
(7 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Customer
,
CustomerContact
,
CustomerLocation
,
CustomerTuple
}
from
"."
;
export
interface
CustomerCreateRequest
extends
CustomerTuple
{
Customer
:
Customer
;
CustomerContact
:
CustomerContact
;
CustomerLocation
:
CustomerLocation
;
matchExternalId
:
boolean
; }