/** * 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 { ConversationAttributesSchemaName } from './ConversationAttributesSchemaName'; import type { ResourceTimestampsSchema } from './ResourceTimestampsSchema'; /** * * @export * @interface ConversationAttributesSchema */ export interface ConversationAttributesSchema { /** * * @type {ConversationAttributesSchemaName} * @memberof ConversationAttributesSchema */ name?: ConversationAttributesSchemaName; /** * Conversation type (e.g., candidates, jobs, talents, personas) * @type {string} * @memberof ConversationAttributesSchema */ type?: string | null; /** * * @type {string} * @memberof ConversationAttributesSchema */ status?: string; /** * Multilingual summary keyed by language code * @type {{ [key: string]: string; }} * @memberof ConversationAttributesSchema */ summary?: { [key: string]: string; } | null; /** * Source of the conversation * @type {string} * @memberof ConversationAttributesSchema */ source?: string | null; /** * Preferred language code (e.g., en-US, pl-PL) * @type {string} * @memberof ConversationAttributesSchema */ languageCode?: string | null; /** * Whether the conversation has ended * @type {boolean} * @memberof ConversationAttributesSchema */ isConversationEnd?: boolean | null; /** * Conversation settings inherited from job * @type {{ [key: string]: any; }} * @memberof ConversationAttributesSchema */ settings?: { [key: string]: any; } | null; /** * Time-to-live expiration timestamp * @type {string} * @memberof ConversationAttributesSchema */ ttl?: string | null; /** * * @type {{ [key: string]: any; }} * @memberof ConversationAttributesSchema */ meta?: { [key: string]: any; }; /** * * @type {ResourceTimestampsSchema} * @memberof ConversationAttributesSchema */ timestamps?: ResourceTimestampsSchema; } /** * Check if a given object implements the ConversationAttributesSchema interface. */ export declare function instanceOfConversationAttributesSchema(value: object): value is ConversationAttributesSchema; export declare function ConversationAttributesSchemaFromJSON(json: any): ConversationAttributesSchema; export declare function ConversationAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConversationAttributesSchema; export declare function ConversationAttributesSchemaToJSON(json: any): ConversationAttributesSchema; export declare function ConversationAttributesSchemaToJSONTyped(value?: ConversationAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConversationAttributesSchema.d.ts.map