/* Options: Date: 2025-12-06 06:21:05 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.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 'GET'; } public createResponse() { return new IsAvailableResponse(); } }