/* Options: Date: 2026-01-27 22:29:53 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.vionfood.com/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ImportExtendedInvoiceInformation.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Vion/ImportExtendedInvoiceInformation", Verbs="POST") open class ImportExtendedInvoiceInformation : IReturn { var Name:String? = null var ContentType:String? = null var RequestStream:InputStream? = null companion object { private val responseType = Result::class.java } override fun getResponseType(): Any? = ImportExtendedInvoiceInformation.responseType } open class Result { var Status:String? = null var Message:String? = null }