/** * 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 { CreateCommentRequestSchemaDataAttributes } from './CreateCommentRequestSchemaDataAttributes'; /** * * @export * @interface CreateCommentRequestSchemaData */ export interface CreateCommentRequestSchemaData { /** * * @type {CreateCommentRequestSchemaDataTypeEnum} * @memberof CreateCommentRequestSchemaData */ type: CreateCommentRequestSchemaDataTypeEnum; /** * * @type {CreateCommentRequestSchemaDataAttributes} * @memberof CreateCommentRequestSchemaData */ attributes: CreateCommentRequestSchemaDataAttributes; } /** * @export */ export declare const CreateCommentRequestSchemaDataTypeEnum: { readonly Comments: "comments"; }; export type CreateCommentRequestSchemaDataTypeEnum = typeof CreateCommentRequestSchemaDataTypeEnum[keyof typeof CreateCommentRequestSchemaDataTypeEnum]; /** * Check if a given object implements the CreateCommentRequestSchemaData interface. */ export declare function instanceOfCreateCommentRequestSchemaData(value: object): value is CreateCommentRequestSchemaData; export declare function CreateCommentRequestSchemaDataFromJSON(json: any): CreateCommentRequestSchemaData; export declare function CreateCommentRequestSchemaDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCommentRequestSchemaData; export declare function CreateCommentRequestSchemaDataToJSON(json: any): CreateCommentRequestSchemaData; export declare function CreateCommentRequestSchemaDataToJSONTyped(value?: CreateCommentRequestSchemaData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateCommentRequestSchemaData.d.ts.map