finite-state-sdk
Version:
The Finite State SDK.
13 lines (12 loc) • 493 B
TypeScript
import { CreateTestResponse, UploadMethod } from "./types";
export interface createTestAsThirdPartyScannerParams {
businessUnitId: string;
createdByUserId: string;
assetId: string;
artifactId: string;
testName: string;
testType: string;
uploadMethod?: UploadMethod;
productId?: string;
}
export declare function createTestAsThirdPartyScanner(token: string, organizationContext: string, params: createTestAsThirdPartyScannerParams): Promise<CreateTestResponse>;