/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { AgentDisplayMessageAttachment } from './AgentDisplayMessageAttachment'; /** * * @export * @interface AgentDisplayMessage */ export interface AgentDisplayMessage { /** * * @type {Array} * @memberof AgentDisplayMessage */ attachments?: Array; /** * * @type {string} * @memberof AgentDisplayMessage */ id?: string; /** * * @type {string} * @memberof AgentDisplayMessage */ sender?: string; /** * * @type {string} * @memberof AgentDisplayMessage */ text?: string; /** * * @type {Date} * @memberof AgentDisplayMessage */ timestamp?: Date; } /** * Check if a given object implements the AgentDisplayMessage interface. */ export declare function instanceOfAgentDisplayMessage(value: object): value is AgentDisplayMessage; export declare function AgentDisplayMessageFromJSON(json: any): AgentDisplayMessage; export declare function AgentDisplayMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentDisplayMessage; export declare function AgentDisplayMessageToJSON(json: any): AgentDisplayMessage; export declare function AgentDisplayMessageToJSONTyped(value?: AgentDisplayMessage | null, ignoreDiscriminator?: boolean): any;