/** * 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. */ /** * Resource-level meta for chat rows. Stamped at write time by inbound / * outbound transport adapters and downstream actions: * - `providerMessageId` carries the underlying provider id (Twilio * MessageSid for SMS, Bot Framework activity id for Teams, etc.) * so admin views can correlate to provider logs * - `isReply` indicates this row is a reply within an existing * conversation (inbound Lambda's clarify_reply path or outbound * Lambda invoked from a workflow's wait_for_reply step) * `conversationId` and `languageCode` are first-class attributes on * the chat resource; they are not duplicated in meta. * Frontend should treat unknown keys gracefully - meta is forward- * compatible (`additionalProperties: true`). * @export * @interface ChatMetaSchema */ export interface ChatMetaSchema { [key: string]: any | any; /** * Provider-side message id (Twilio MessageSid for SMS, etc.). * @type {string} * @memberof ChatMetaSchema */ providerMessageId?: string; /** * True when this chat row is a reply within an open thread. * @type {boolean} * @memberof ChatMetaSchema */ isReply?: boolean; } /** * Check if a given object implements the ChatMetaSchema interface. */ export declare function instanceOfChatMetaSchema(value: object): value is ChatMetaSchema; export declare function ChatMetaSchemaFromJSON(json: any): ChatMetaSchema; export declare function ChatMetaSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatMetaSchema; export declare function ChatMetaSchemaToJSON(json: any): ChatMetaSchema; export declare function ChatMetaSchemaToJSONTyped(value?: ChatMetaSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ChatMetaSchema.d.ts.map