/** * 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 { CommentRelationshipsSchema } from './CommentRelationshipsSchema'; import type { CommentAttributesSchema } from './CommentAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface CommentResourceSchema */ export interface CommentResourceSchema { /** * * @type {CommentResourceSchemaTypeEnum} * @memberof CommentResourceSchema */ type: CommentResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof CommentResourceSchema */ id: string; /** * * @type {CommentAttributesSchema} * @memberof CommentResourceSchema */ attributes: CommentAttributesSchema; /** * * @type {CommentRelationshipsSchema} * @memberof CommentResourceSchema */ relationships?: CommentRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof CommentResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof CommentResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const CommentResourceSchemaTypeEnum: { readonly Comments: "comments"; }; export type CommentResourceSchemaTypeEnum = typeof CommentResourceSchemaTypeEnum[keyof typeof CommentResourceSchemaTypeEnum]; /** * Check if a given object implements the CommentResourceSchema interface. */ export declare function instanceOfCommentResourceSchema(value: object): value is CommentResourceSchema; export declare function CommentResourceSchemaFromJSON(json: any): CommentResourceSchema; export declare function CommentResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentResourceSchema; export declare function CommentResourceSchemaToJSON(json: any): CommentResourceSchema; export declare function CommentResourceSchemaToJSONTyped(value?: CommentResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CommentResourceSchema.d.ts.map