/** * Nominex TMA API * API config for Nominex TMA * * The version of the OpenAPI document: 0.0.17 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TaskStartProps */ export interface TaskStartProps { /** * * @type {string} * @memberof TaskStartProps */ code?: string; } /** * Check if a given object implements the TaskStartProps interface. */ export declare function instanceOfTaskStartProps(value: object): boolean; export declare function TaskStartPropsFromJSON(json: any): TaskStartProps; export declare function TaskStartPropsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskStartProps; export declare function TaskStartPropsToJSON(value?: TaskStartProps | null): any;