/* Options: Date: 2025-07-17 08:43:12 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ClaimReq.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/members/claim", Verbs="POST") public static class ClaimReq implements IReturn { public String employerId = null; public String memberId = null; public String type = null; public String description = null; public String getEmployerId() { return employerId; } public ClaimReq setEmployerId(String value) { this.employerId = value; return this; } public String getMemberId() { return memberId; } public ClaimReq setMemberId(String value) { this.memberId = value; return this; } public String getType() { return type; } public ClaimReq setType(String value) { this.type = value; return this; } public String getDescription() { return description; } public ClaimReq setDescription(String value) { this.description = value; return this; } private static Object responseType = ClaimResponse.class; public Object getResponseType() { return responseType; } } public static class ClaimResponse { public HttpResult result = null; public HttpResult getResult() { return result; } public ClaimResponse setResult(HttpResult value) { this.result = value; return this; } } public static class HttpResult { public String responseText = null; public InputStream responseStream = null; public FileInfo fileInfo = null; public IVirtualFile virtualFile = null; public String contentType = null; public HashMap headers = null; public ArrayList cookies = null; public String eTag = null; public TimeSpan age = null; public TimeSpan maxAge = null; public Date expires = null; public Date lastModified = null; public CacheControl cacheControl = null; public Func resultScope = null; public Boolean allowsPartialResponse = null; public HashMap options = null; public Integer status = null; public HttpStatusCode statusCode = null; public String statusDescription = null; public Object response = null; public IContentTypeWriter responseFilter = null; public IRequest requestContext = null; public String view = null; public String template = null; public Integer paddingLength = null; public Boolean isPartialRequest = null; public String getResponseText() { return responseText; } public HttpResult setResponseText(String value) { this.responseText = value; return this; } public InputStream getResponseStream() { return responseStream; } public HttpResult setResponseStream(InputStream value) { this.responseStream = value; return this; } public FileInfo getFileInfo() { return fileInfo; } public HttpResult setFileInfo(FileInfo value) { this.fileInfo = value; return this; } public IVirtualFile getVirtualFile() { return virtualFile; } public HttpResult setVirtualFile(IVirtualFile value) { this.virtualFile = value; return this; } public String getContentType() { return contentType; } public HttpResult setContentType(String value) { this.contentType = value; return this; } public HashMap getHeaders() { return headers; } public HttpResult setHeaders(HashMap value) { this.headers = value; return this; } public ArrayList getCookies() { return cookies; } public HttpResult setCookies(ArrayList value) { this.cookies = value; return this; } public String getETag() { return eTag; } public HttpResult setETag(String value) { this.eTag = value; return this; } public TimeSpan getAge() { return age; } public HttpResult setAge(TimeSpan value) { this.age = value; return this; } public TimeSpan getMaxAge() { return maxAge; } public HttpResult setMaxAge(TimeSpan value) { this.maxAge = value; return this; } public Date getExpires() { return expires; } public HttpResult setExpires(Date value) { this.expires = value; return this; } public Date getLastModified() { return lastModified; } public HttpResult setLastModified(Date value) { this.lastModified = value; return this; } public CacheControl getCacheControl() { return cacheControl; } public HttpResult setCacheControl(CacheControl value) { this.cacheControl = value; return this; } public Func getResultScope() { return resultScope; } public HttpResult setResultScope(Func value) { this.resultScope = value; return this; } public Boolean isAllowsPartialResponse() { return allowsPartialResponse; } public HttpResult setAllowsPartialResponse(Boolean value) { this.allowsPartialResponse = value; return this; } public HashMap getOptions() { return options; } public HttpResult setOptions(HashMap value) { this.options = value; return this; } public Integer getStatus() { return status; } public HttpResult setStatus(Integer value) { this.status = value; return this; } public HttpStatusCode getStatusCode() { return statusCode; } public HttpResult setStatusCode(HttpStatusCode value) { this.statusCode = value; return this; } public String getStatusDescription() { return statusDescription; } public HttpResult setStatusDescription(String value) { this.statusDescription = value; return this; } public Object getResponse() { return response; } public HttpResult setResponse(Object value) { this.response = value; return this; } public IContentTypeWriter getResponseFilter() { return responseFilter; } public HttpResult setResponseFilter(IContentTypeWriter value) { this.responseFilter = value; return this; } public IRequest getRequestContext() { return requestContext; } public HttpResult setRequestContext(IRequest value) { this.requestContext = value; return this; } public String getView() { return view; } public HttpResult setView(String value) { this.view = value; return this; } public String getTemplate() { return template; } public HttpResult setTemplate(String value) { this.template = value; return this; } public Integer getPaddingLength() { return paddingLength; } public HttpResult setPaddingLength(Integer value) { this.paddingLength = value; return this; } public Boolean getIsPartialRequest() { return isPartialRequest; } public HttpResult setIsPartialRequest(Boolean value) { this.isPartialRequest = value; return this; } } }