import type { LabelMappingEntryRequest } from './label-mapping-entry-request';
export interface FunctionCallRequest {
    'function': string;
    'task': number;
    'job'?: number;
    'max_distance'?: number;
    'threshold'?: number;
    'cleanup'?: boolean;
    'convMaskToPoly'?: boolean;
    'conv_mask_to_poly'?: boolean;
    'mapping'?: {
        [key: string]: LabelMappingEntryRequest;
    };
}
