/* Options: Date: 2025-05-05 17:24: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: UpdateAgencyMulesoftQueueState.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export enum QueueStateChanged { Enabled = 1, Disabled = 2, } export class UpdateAgencyMulesoftQueue { public StatusChanged: QueueStateChanged; public DisabledReason: string; public GasId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class AgencyMulesoftStatusResponse { public Status: boolean; public MessageCount?: number; public LastModified?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UpdateAgencyMulesoftQueueStateResponse extends AgencyMulesoftStatusResponse { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/v1/UpdateAgencyMulesoftQueueState", "POST") export class UpdateAgencyMulesoftQueueState extends UpdateAgencyMulesoftQueue implements IReturn, IGet { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'UpdateAgencyMulesoftQueueState'; } public getMethod() { return 'GET'; } public createResponse() { return new UpdateAgencyMulesoftQueueStateResponse(); } }