export enum BillActionsMessage { UNIT_BILL_ARCHIVED = 'unitBillArchived', UNIT_BILL_MARK_AS_PAID = 'unitBillMarkAsPaid', UNIT_BILL_MARK_AS_UNPAID = 'unitBillMarkAsUnpaid', UNIT_BILL_RESCHEDULED = 'unitBillRescheduled', UNIT_BILL_CHECK_CANCELLED = 'unitBillCheckCancelled', UNIT_BILL_REFUNDED = 'unitBillRefunded' } export const billActionResultMessages = Object.values(BillActionsMessage); // Each bill action result event carries the affected billId as its detail. export type BillActionResultEvent = string;