/* Options: Date: 2025-09-07 11:31:13 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetOkaiGist.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } // @Route("/models/gist") // @Route("/GetOkaiGist", "GET") export class GetOkaiGist implements IReturn, IGet { public prompt: string; public include: string; public template: string; public project: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetOkaiGist'; } public getMethod() { return 'GET'; } public createResponse() { return ''; } }