/* Options: Date: 2025-10-30 00:08:15 Version: 8.80 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: VehicleSwapActiveRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export class VehicleSwapActive { public Id: number; public Reference: string; public OrderType: string; public VehicleSwapGuid: string; public OrderGuid: string; public Showroom?: string; public CommissionNumber?: string; public RequestReason?: string; public SentToCesar: boolean; public CreationDate: string; public MaintenanceDate?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class VehicleSwapActiveResponse { public ActiveVehicleSwaps: VehicleSwapActive[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/VehicleSwap/Active", "GET") export class VehicleSwapActiveRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'VehicleSwapActiveRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new VehicleSwapActiveResponse(); } }