export declare enum WorkerOrderStatus { /** * The worker order has been canceled and will not be paid out */ CANCELED = "canceled", /** * Means that the worker order already has a date * to be paid out */ SCHEDULED = "scheduled", /** * Means that the order has been grouped onto others * with the same schedule and has been included in a transaction to be paid out */ PROCESSED = "processed", /** * Means that the order has been paid out (payment went through successfully) */ SETTLED = "settled", /** * The order has already been paid but was reverted for some reason, * This should generate a negative credit on the worker's AccountBalanceHistory */ REVERTED = "reverted", ANTICIPATION_PENDING = "anticipation_pending", ANTICIPATION_FAILED = "anticipation_failed" }