export type IrisChannel = { id: string; status: IrisChannelStatus; }; export type IrisChannelStatus = "CREATED" | "ALIVE" | "EXPIRED" | "NONE" export type IrisSimChannel = { phoneNumber: string; phoneChannelId: number; };