/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * 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 UpdateChatRequest */ export interface UpdateChatRequest { /** * New title for the chat * @type {string} * @memberof UpdateChatRequest */ title?: string; /** * Chat type. * @type {string} * @memberof UpdateChatRequest */ chatType?: string; /** * Visibility of the chat. * @type {string} * @memberof UpdateChatRequest */ visibility?: UpdateChatRequestVisibilityEnum; } /** * @export */ export declare const UpdateChatRequestVisibilityEnum: { readonly Public: "public"; readonly Private: "private"; }; export type UpdateChatRequestVisibilityEnum = typeof UpdateChatRequestVisibilityEnum[keyof typeof UpdateChatRequestVisibilityEnum]; /** * Check if a given object implements the UpdateChatRequest interface. */ export declare function instanceOfUpdateChatRequest(value: object): value is UpdateChatRequest; export declare function UpdateChatRequestFromJSON(json: any): UpdateChatRequest; export declare function UpdateChatRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateChatRequest; export declare function UpdateChatRequestToJSON(json: any): UpdateChatRequest; export declare function UpdateChatRequestToJSONTyped(value?: UpdateChatRequest | null, ignoreDiscriminator?: boolean): any;