/* Options: Date: 2025-12-06 06:26:01 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DocumentTypeRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/v1/DocumentType/", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class DocumentTypeRequest : IReturn { companion object { private val responseType = DocumentTypeResponse::class.java } override fun getResponseType(): Any? = DocumentTypeRequest.responseType } open class DocumentTypeResponse { open var ResponseStatus:ResponseStatus? = null open var DocumentTypes:ArrayList = ArrayList() } open class DocumentType { open var Sort:Int? = null open var TypeName:String? = null }