export declare enum CompanyOrderStatus { /** * Scheduled means that the order has been created and * has had a billing date assigned */ SCHEDULED = "scheduled", /** * Processed means that the order has been grouped * onto others and generated a transaction */ PROCESSED = "processed", /** * Settled means that the order has gone through * the entire billing flow and has been paid */ SETTLED = "settled", /** * The worker order has been canceled and will not be charged */ CANCELED = "canceled", /** * The order has already been paid but was reverted for some reason, * This should generate a positive credit on the company's AccountBalanceHistory */ REVERTED = "reverted" }