/** * 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 TaskClaimProps */ export interface TaskClaimProps { /** * * @type {string} * @memberof TaskClaimProps */ code?: string; } /** * Check if a given object implements the TaskClaimProps interface. */ export declare function instanceOfTaskClaimProps(value: object): boolean; export declare function TaskClaimPropsFromJSON(json: any): TaskClaimProps; export declare function TaskClaimPropsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskClaimProps; export declare function TaskClaimPropsToJSON(value?: TaskClaimProps | null): any;