/* Options: Date: 2025-05-05 17:58:44 Version: 8.61 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-agency-orch-mb-dhc.rapp-customers.co.uk //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEquipmentRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export class GetEquipmentResponse { public Equipment: string[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/equipment", "GET") export class GetEquipmentRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetEquipmentRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetEquipmentResponse(); } }