/* Options: Date: 2025-12-06 07:29:34 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DocumentTypeRequest.* //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/DocumentType/", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class DocumentTypeRequest implements IReturn { private static Object responseType = DocumentTypeResponse.class; public Object getResponseType() { return responseType; } } public static class DocumentTypeResponse { public ResponseStatus ResponseStatus = null; public ArrayList DocumentTypes = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public DocumentTypeResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getDocumentTypes() { return DocumentTypes; } public DocumentTypeResponse setDocumentTypes(ArrayList value) { this.DocumentTypes = value; return this; } } public static class DocumentType { public Integer Sort = null; public String TypeName = null; public Integer getSort() { return Sort; } public DocumentType setSort(Integer value) { this.Sort = value; return this; } public String getTypeName() { return TypeName; } public DocumentType setTypeName(String value) { this.TypeName = value; return this; } } }