import { APIResource } from "../../core/resource.js"; import { APIPromise } from "../../core/api-promise.js"; import { RequestOptions } from "../../internal/request-options.js"; export declare class Manual extends APIResource { /** * Check the status and outcome of a job by `job_id`. This includes all deductions * jobs including those for both automated and assisted integrations. */ retrieve(jobID: string, options?: RequestOptions): APIPromise; } export interface ManualAsyncJob { /** * Specific information about the job, such as individual statuses for batch jobs. */ body: Array | null; job_id: string; status: 'pending' | 'in_progress' | 'error' | 'complete'; } export declare namespace Manual { export { type ManualAsyncJob as ManualAsyncJob }; } //# sourceMappingURL=manual.d.ts.map