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