re-uploading work
This commit is contained in:
53
web/src/api/models/InquiryResponse.ts
Normal file
53
web/src/api/models/InquiryResponse.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { i64 } from './i64';
|
||||
import type { InquiryStatus } from './InquiryStatus';
|
||||
/**
|
||||
* Full inquiry response with all details
|
||||
*/
|
||||
export type InquiryResponse = {
|
||||
assigned_to?: (null | i64);
|
||||
/**
|
||||
* Creation timestamp
|
||||
*/
|
||||
created: string;
|
||||
/**
|
||||
* Execution ID this inquiry belongs to
|
||||
*/
|
||||
execution: i64;
|
||||
/**
|
||||
* Inquiry ID
|
||||
*/
|
||||
id: i64;
|
||||
/**
|
||||
* Prompt text displayed to the user
|
||||
*/
|
||||
prompt: string;
|
||||
/**
|
||||
* When the inquiry was responded to
|
||||
*/
|
||||
responded_at?: string | null;
|
||||
/**
|
||||
* Response data provided by the user
|
||||
*/
|
||||
response: any | null;
|
||||
/**
|
||||
* JSON schema for expected response
|
||||
*/
|
||||
response_schema: any | null;
|
||||
/**
|
||||
* Current status of the inquiry
|
||||
*/
|
||||
status: InquiryStatus;
|
||||
/**
|
||||
* When the inquiry expires
|
||||
*/
|
||||
timeout_at?: string | null;
|
||||
/**
|
||||
* Last update timestamp
|
||||
*/
|
||||
updated: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user