/* Options: Date: 2026-06-19 14:25:24 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-staging.bookmore.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ResolveVossErrorLogQuery.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/voss/errorlog/resolve", Verbs="PUT") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class ResolveVossErrorLogQuery implements IReturn> { public Boolean Resolved = null; public ArrayList VossErrorLogIds = new ArrayList(); public Boolean isResolved() { return Resolved; } public ResolveVossErrorLogQuery setResolved(Boolean value) { this.Resolved = value; return this; } public ArrayList getVossErrorLogIds() { return VossErrorLogIds; } public ResolveVossErrorLogQuery setVossErrorLogIds(ArrayList value) { this.VossErrorLogIds = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class VossErrorLogQueryResponse { public Integer Id = null; public UUID CompanyId = null; public Integer TypeId = null; public String TypeName = null; public Integer Source = null; public String SourceName = null; public String Comments = null; public String MetaData = null; public String QueueName = null; public String MessageType = null; public Integer DeliveryCount = null; public String DeadLetterReason = null; public Boolean Resolved = null; public Date CreatedDate = null; public Integer getId() { return Id; } public VossErrorLogQueryResponse setId(Integer value) { this.Id = value; return this; } public UUID getCompanyId() { return CompanyId; } public VossErrorLogQueryResponse setCompanyId(UUID value) { this.CompanyId = value; return this; } public Integer getTypeId() { return TypeId; } public VossErrorLogQueryResponse setTypeId(Integer value) { this.TypeId = value; return this; } public String getTypeName() { return TypeName; } public VossErrorLogQueryResponse setTypeName(String value) { this.TypeName = value; return this; } public Integer getSource() { return Source; } public VossErrorLogQueryResponse setSource(Integer value) { this.Source = value; return this; } public String getSourceName() { return SourceName; } public VossErrorLogQueryResponse setSourceName(String value) { this.SourceName = value; return this; } public String getComments() { return Comments; } public VossErrorLogQueryResponse setComments(String value) { this.Comments = value; return this; } public String getMetaData() { return MetaData; } public VossErrorLogQueryResponse setMetaData(String value) { this.MetaData = value; return this; } public String getQueueName() { return QueueName; } public VossErrorLogQueryResponse setQueueName(String value) { this.QueueName = value; return this; } public String getMessageType() { return MessageType; } public VossErrorLogQueryResponse setMessageType(String value) { this.MessageType = value; return this; } public Integer getDeliveryCount() { return DeliveryCount; } public VossErrorLogQueryResponse setDeliveryCount(Integer value) { this.DeliveryCount = value; return this; } public String getDeadLetterReason() { return DeadLetterReason; } public VossErrorLogQueryResponse setDeadLetterReason(String value) { this.DeadLetterReason = value; return this; } public Boolean isResolved() { return Resolved; } public VossErrorLogQueryResponse setResolved(Boolean value) { this.Resolved = value; return this; } public Date getCreatedDate() { return CreatedDate; } public VossErrorLogQueryResponse setCreatedDate(Date value) { this.CreatedDate = value; return this; } } }