EmailActor: {
    actorType: "UNKNOWN";
    [k: string]: unknown;
} | UserActor | CustomerActor | {
    actorType: "supportEmailAddress";
    supportEmailAddress: string;
    [k: string]: unknown;
} | {
    actorType: "deletedCustomer";
    customerId: Id;
    [k: string]: unknown;
}

Type declaration

  • [k: string]: unknown
  • actorType: "UNKNOWN"

Type declaration

  • [k: string]: unknown
  • actorType: "supportEmailAddress"
  • supportEmailAddress: string

Type declaration

  • [k: string]: unknown
  • actorType: "deletedCustomer"
  • customerId: Id

Generated using TypeDoc