/* Options: Date: 2025-12-11 09:18:55 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reservation.api.dev.86degrees.com //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(); } }