/* Options: Date: 2025-05-05 17:32:53 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 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateAgencyMulesoftQueueState.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/UpdateAgencyMulesoftQueueState", Verbs="POST") public static class UpdateAgencyMulesoftQueueState extends UpdateAgencyMulesoftQueue implements IReturn, IGet { private static Object responseType = UpdateAgencyMulesoftQueueStateResponse.class; public Object getResponseType() { return responseType; } } public static class UpdateAgencyMulesoftQueueStateResponse extends AgencyMulesoftStatusResponse { } public static enum QueueStateChanged { Enabled(1), Disabled(2); private final int value; QueueStateChanged(final int intValue) { value = intValue; } public int getValue() { return value; } } public static class UpdateAgencyMulesoftQueue { public QueueStateChanged StatusChanged = null; public String DisabledReason = null; public String GasId = null; public QueueStateChanged getStatusChanged() { return StatusChanged; } public UpdateAgencyMulesoftQueue setStatusChanged(QueueStateChanged value) { this.StatusChanged = value; return this; } public String getDisabledReason() { return DisabledReason; } public UpdateAgencyMulesoftQueue setDisabledReason(String value) { this.DisabledReason = value; return this; } public String getGasId() { return GasId; } public UpdateAgencyMulesoftQueue setGasId(String value) { this.GasId = value; return this; } } public static class AgencyMulesoftStatusResponse { public Boolean Status = null; public Integer MessageCount = null; public String LastModified = null; public Boolean isStatus() { return Status; } public AgencyMulesoftStatusResponse setStatus(Boolean value) { this.Status = value; return this; } public Integer getMessageCount() { return MessageCount; } public AgencyMulesoftStatusResponse setMessageCount(Integer value) { this.MessageCount = value; return this; } public String getLastModified() { return LastModified; } public AgencyMulesoftStatusResponse setLastModified(String value) { this.LastModified = value; return this; } } }