/* Options: Date: 2026-04-28 20:11:47 Version: 10.06 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: VehicleSwapRecentlyUpdatedRequest.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class VehicleSwapRecentlyUpdatedResponse { public Guids: string[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/vehicleswap/recentlyupdated", "GET") export class VehicleSwapRecentlyUpdatedRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'VehicleSwapRecentlyUpdatedRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new VehicleSwapRecentlyUpdatedResponse(); } }