UNPKG

scheunemann-interfaces

Version:
13 lines (12 loc) 444 B
import { ISubscriptionCustomer } from "../../subscription-customer"; import { ECustomerStatus } from "../enums"; import { ICustomer } from "./i-customer"; export interface ICustomerIbChain extends ICustomer { blockedReason: string | null; status: ECustomerStatus; subscription: ISubscriptionCustomer | null; subscriptionId: string | null; pass: string | null; onboardingAt: Date | null; lastAccessAt: Date | null; }