/** * 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 { CommentResourceSchema } from './CommentResourceSchema'; import type { CommentAuthorIncludedSchema } from './CommentAuthorIncludedSchema'; /** * * @export * @interface CommentResponseDocument */ export interface CommentResponseDocument { /** * * @type {CommentResourceSchema} * @memberof CommentResponseDocument */ data?: CommentResourceSchema; /** * * @type {Array} * @memberof CommentResponseDocument */ included?: Array; } /** * Check if a given object implements the CommentResponseDocument interface. */ export declare function instanceOfCommentResponseDocument(value: object): value is CommentResponseDocument; export declare function CommentResponseDocumentFromJSON(json: any): CommentResponseDocument; export declare function CommentResponseDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentResponseDocument; export declare function CommentResponseDocumentToJSON(json: any): CommentResponseDocument; export declare function CommentResponseDocumentToJSONTyped(value?: CommentResponseDocument | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CommentResponseDocument.d.ts.map