/** * 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 CommentsResponseDocument */ export interface CommentsResponseDocument { /** * * @type {Array} * @memberof CommentsResponseDocument */ data?: Array; /** * * @type {object} * @memberof CommentsResponseDocument */ meta?: object; /** * * @type {object} * @memberof CommentsResponseDocument */ links?: object; /** * * @type {Array} * @memberof CommentsResponseDocument */ included?: Array; } /** * Check if a given object implements the CommentsResponseDocument interface. */ export declare function instanceOfCommentsResponseDocument(value: object): value is CommentsResponseDocument; export declare function CommentsResponseDocumentFromJSON(json: any): CommentsResponseDocument; export declare function CommentsResponseDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentsResponseDocument; export declare function CommentsResponseDocumentToJSON(json: any): CommentsResponseDocument; export declare function CommentsResponseDocumentToJSONTyped(value?: CommentsResponseDocument | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CommentsResponseDocument.d.ts.map