@itwin/insights-client
Version:
Insights client for the iTwin platform
10 lines • 656 B
TypeScript
import { OperationsBase } from "../../common/OperationsBase";
import { IOCLCAJobsClient } from "./IOCLCAJobsClient";
import { OCLCAJob, OCLCAJobCreate, OCLCAJobStatus, OCLCALoginResponse } from "../interfaces/OCLCAJobs";
export declare class OCLCAJobsClient extends OperationsBase implements IOCLCAJobsClient {
constructor(basePath?: string);
getOCLCAAccessToken(username: string, password: string): Promise<OCLCALoginResponse | undefined>;
createJob(accessToken: string, job: OCLCAJobCreate): Promise<OCLCAJob>;
getOCLCAJobStatus(accessToken: string, jobId: string): Promise<OCLCAJobStatus>;
}
//# sourceMappingURL=OCLCAJobsClient.d.ts.map