/* Options: Date: 2025-07-17 23:16:21 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebviewConnectHandlerReq.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/powens/webviewhandler/connect", "POST") export class WebviewConnectHandlerReq implements IReturn { public state: string; public connectionId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'WebviewConnectHandlerReq'; } public getMethod() { return 'POST'; } public createResponse() { return new Blob(); } }