/** * 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. */ /** * * @export * @interface ChatUIOption */ export interface ChatUIOption { /** * * @type {string} * @memberof ChatUIOption */ description?: string; /** * * @type {string} * @memberof ChatUIOption */ label?: string; /** * * @type {string} * @memberof ChatUIOption */ value?: string; } /** * Check if a given object implements the ChatUIOption interface. */ export declare function instanceOfChatUIOption(value: object): value is ChatUIOption; export declare function ChatUIOptionFromJSON(json: any): ChatUIOption; export declare function ChatUIOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatUIOption; export declare function ChatUIOptionToJSON(json: any): ChatUIOption; export declare function ChatUIOptionToJSONTyped(value?: ChatUIOption | null, ignoreDiscriminator?: boolean): any;