import { TaskMetadatum } from './TaskMetadatum';
import { TaskNameEnum } from './TaskNameEnum';
import { TaskStatusEnum } from './TaskStatusEnum';
/** Asynchronous task related to Billing */
export interface Task {
    /** Unique identifier of the Task */
    id: number;
    /** Metadata linked to the Task. Will help you determine which object it relates to */
    metadata: TaskMetadatum[];
    /** Describes which Task is being performed */
    name: TaskNameEnum;
    /** Current status of the Task */
    status: TaskStatusEnum;
    /** Current step of the Task. The step depends on the Task name. */
    step: string;
}
//# sourceMappingURL=Task.d.ts.map