/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CreateRunRequestBodyData } from './CreateRunRequestBodyData'; /** * * @export * @interface CreateRunRequestBody */ export interface CreateRunRequestBody { /** * * @type {CreateRunRequestBodyData} * @memberof CreateRunRequestBody */ data: CreateRunRequestBodyData; } /** * Check if a given object implements the CreateRunRequestBody interface. */ export declare function instanceOfCreateRunRequestBody(value: object): value is CreateRunRequestBody; export declare function CreateRunRequestBodyFromJSON(json: any): CreateRunRequestBody; export declare function CreateRunRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRunRequestBody; export declare function CreateRunRequestBodyToJSON(json: any): CreateRunRequestBody; export declare function CreateRunRequestBodyToJSONTyped(value?: CreateRunRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateRunRequestBody.d.ts.map