UNIVPLMDataIntegration/Web/src/api-services/models/llmchat-summary-history.ts

72 lines
1.7 KiB
TypeScript
Raw Normal View History

/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
import { LLMChatHistory } from './llmchat-history';
/**
*
*
* @export
* @interface LLMChatSummaryHistory
*/
export interface LLMChatSummaryHistory {
/**
* Id
*
* @type {number}
* @memberof LLMChatSummaryHistory
*/
id?: number;
/**
* ID
*
* @type {number}
* @memberof LLMChatSummaryHistory
*/
userId?: number;
/**
*
*
* @type {string}
* @memberof LLMChatSummaryHistory
*/
uniqueToken?: string | null;
/**
*
*
* @type {string}
* @memberof LLMChatSummaryHistory
*/
summary?: string | null;
/**
*
*
* @type {number}
* @memberof LLMChatSummaryHistory
*/
utcCreateTime?: number;
/**
*
*
* @type {Array<LLMChatHistory>}
* @memberof LLMChatSummaryHistory
*/
histories?: Array<LLMChatHistory> | null;
}