/** * 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 { CommentAuthorIncludedSchemaAttributes } from './CommentAuthorIncludedSchemaAttributes'; /** * JSON:API sideload entry for ?include=author - the comment author's * display identity resolved from the user row. Eliminates N+1 user * lookups for names/avatars in comment lists. * @export * @interface CommentAuthorIncludedSchema */ export interface CommentAuthorIncludedSchema { /** * * @type {CommentAuthorIncludedSchemaTypeEnum} * @memberof CommentAuthorIncludedSchema */ type?: CommentAuthorIncludedSchemaTypeEnum; /** * * @type {string} * @memberof CommentAuthorIncludedSchema */ id?: string; /** * * @type {CommentAuthorIncludedSchemaAttributes} * @memberof CommentAuthorIncludedSchema */ attributes?: CommentAuthorIncludedSchemaAttributes; } /** * @export */ export declare const CommentAuthorIncludedSchemaTypeEnum: { readonly Users: "users"; }; export type CommentAuthorIncludedSchemaTypeEnum = typeof CommentAuthorIncludedSchemaTypeEnum[keyof typeof CommentAuthorIncludedSchemaTypeEnum]; /** * Check if a given object implements the CommentAuthorIncludedSchema interface. */ export declare function instanceOfCommentAuthorIncludedSchema(value: object): value is CommentAuthorIncludedSchema; export declare function CommentAuthorIncludedSchemaFromJSON(json: any): CommentAuthorIncludedSchema; export declare function CommentAuthorIncludedSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentAuthorIncludedSchema; export declare function CommentAuthorIncludedSchemaToJSON(json: any): CommentAuthorIncludedSchema; export declare function CommentAuthorIncludedSchemaToJSONTyped(value?: CommentAuthorIncludedSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CommentAuthorIncludedSchema.d.ts.map