/* Options: Date: 2025-12-06 05:27:25 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: PDFDocumentRequest.* //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/PDFDocument/{DocumentId}", Verbs="GET,OPTIONS") // @Route(Path="/v1/PDFDocument/ByCard/{CardId}", Verbs="GET,OPTIONS") open class PDFDocumentRequest : IReturn { open var CardId:Int? = null open var DocumentId:UUID? = null open var PDFDocument:ArrayList = ArrayList() companion object { private val responseType = PDFDocumentResponse::class.java } override fun getResponseType(): Any? = PDFDocumentRequest.responseType } open class PDFDocumentResponse { open var ResponseStatus:ResponseStatus? = null open var PDFDocument:ArrayList = ArrayList() } open class PDFDocument { open var DocumentId:UUID? = null open var PDFDocument:ByteArray = ByteArray(0) open var DateCreated:Date? = null open var CardId:Int? = null }