/* Options: Date: 2025-10-29 23:41:00 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: VehicleSwapAgentEnabledAuditRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export class VehicleSwapAgentEnabledAuditDto { public Id: number; public Reason?: string; public IsEnabled: boolean; public GasUserId: string; public CreationDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class VehicleSwapAgentEnabledAuditResponse { public VehicleSwapAgentEnabledAudits: VehicleSwapAgentEnabledAuditDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/VehicleSwapAgentEnabledAudit", "GET") export class VehicleSwapAgentEnabledAuditRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'VehicleSwapAgentEnabledAuditRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new VehicleSwapAgentEnabledAuditResponse(); } }