/* Options: Date: 2026-01-25 19:01:39 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://legalguard-api-dev.happen.zone //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: IsAvailable.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class IsAvailableResponse { public available: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/test/available") export class IsAvailable implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'IsAvailable'; } public getMethod() { return 'POST'; } public createResponse() { return new IsAvailableResponse(); } }