/** * 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 { CreateCommentRequestSchemaData } from './CreateCommentRequestSchemaData'; /** * * @export * @interface CreateCommentRequestSchema */ export interface CreateCommentRequestSchema { /** * * @type {CreateCommentRequestSchemaData} * @memberof CreateCommentRequestSchema */ data?: CreateCommentRequestSchemaData; } /** * Check if a given object implements the CreateCommentRequestSchema interface. */ export declare function instanceOfCreateCommentRequestSchema(value: object): value is CreateCommentRequestSchema; export declare function CreateCommentRequestSchemaFromJSON(json: any): CreateCommentRequestSchema; export declare function CreateCommentRequestSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCommentRequestSchema; export declare function CreateCommentRequestSchemaToJSON(json: any): CreateCommentRequestSchema; export declare function CreateCommentRequestSchemaToJSONTyped(value?: CreateCommentRequestSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateCommentRequestSchema.d.ts.map