/** * 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 { CommentRelationshipsAuthorSchema } from './CommentRelationshipsAuthorSchema'; /** * Relationship slots on the comment resource. The `target` slot * is implicit (read targetType + targetId from attributes; the * target row lives in its own service table). The `author` slot * is the user who wrote the comment - required, set from the * authorizer at create time. * @export * @interface CommentRelationshipsSchema */ export interface CommentRelationshipsSchema { /** * * @type {CommentRelationshipsAuthorSchema} * @memberof CommentRelationshipsSchema */ author?: CommentRelationshipsAuthorSchema; } /** * Check if a given object implements the CommentRelationshipsSchema interface. */ export declare function instanceOfCommentRelationshipsSchema(value: object): value is CommentRelationshipsSchema; export declare function CommentRelationshipsSchemaFromJSON(json: any): CommentRelationshipsSchema; export declare function CommentRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentRelationshipsSchema; export declare function CommentRelationshipsSchemaToJSON(json: any): CommentRelationshipsSchema; export declare function CommentRelationshipsSchemaToJSONTyped(value?: CommentRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CommentRelationshipsSchema.d.ts.map