/** * 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 { ResourceTimestampsSchema } from './ResourceTimestampsSchema'; /** * * @export * @interface NoteAttributesSchema */ export interface NoteAttributesSchema { /** * * @type {string} * @memberof NoteAttributesSchema */ name?: string; /** * * @type {string} * @memberof NoteAttributesSchema */ status?: string; /** * Multilingual note details keyed by language code * @type {{ [key: string]: string; }} * @memberof NoteAttributesSchema */ details?: { [key: string]: string; } | null; /** * Source of the note * @type {string} * @memberof NoteAttributesSchema */ source?: string | null; /** * Denormalized user id of the note's author (mirror of email.fromUserId): the boe workflow user for AI-written notes, the human creator for manual ones. Server-stamped at create from the caller identity; FE joins against its local user cache to render name + avatar without a per-row API call. Null on legacy rows. * @type {string} * @memberof NoteAttributesSchema */ authorUserId?: string | null; /** * Time-to-live expiration timestamp * @type {string} * @memberof NoteAttributesSchema */ ttl?: string | null; /** * * @type {{ [key: string]: any; }} * @memberof NoteAttributesSchema */ meta?: { [key: string]: any; }; /** * * @type {ResourceTimestampsSchema} * @memberof NoteAttributesSchema */ timestamps?: ResourceTimestampsSchema; } /** * Check if a given object implements the NoteAttributesSchema interface. */ export declare function instanceOfNoteAttributesSchema(value: object): value is NoteAttributesSchema; export declare function NoteAttributesSchemaFromJSON(json: any): NoteAttributesSchema; export declare function NoteAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): NoteAttributesSchema; export declare function NoteAttributesSchemaToJSON(json: any): NoteAttributesSchema; export declare function NoteAttributesSchemaToJSONTyped(value?: NoteAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=NoteAttributesSchema.d.ts.map