/* Options: Date: 2026-03-13 22:08:35 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: barcode_forced.* //ExcludeTypes: //InitializeCollections: False //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="/barcode/{BarcodeType}/{BarcodeValue}", Verbs="GET") open class barcode : IReturn { /** * barcode type */ @ApiMember(DataType="string", Description="barcode type", IsRequired=true, Name="BarcodeType", ParameterType="query") open var barcodeType:eapi_barcode_type_enum? = null /** * barcode value */ @ApiMember(DataType="string", Description="barcode value", IsRequired=true, Name="BarcodeValue", ParameterType="query") open var barcodeValue:String? = null companion object { private val responseType = Object::class.java } override fun getResponseType(): Any? = barcode.responseType } /** * Service de création de barcodes (OLD SCHOOL) */ @Route(Path="/barcode_forced/{BasicAuth}/{MimeType}/{BarcodeType}/{BarcodeValue}", Verbs="GET") @Api(Description="Service de création de barcodes (OLD SCHOOL)") open class barcode_forced : IReturn { /** * Basic Auth */ @ApiMember(DataType="string", Description="Basic Auth", IsRequired=true, Name="BasicAuth", ParameterType="query") open var basicAuth:String? = null /** * mime-type */ @ApiMember(DataType="string", Description="mime-type", IsRequired=true, Name="MimeType", ParameterType="query") open var mimeType:String? = null /** * barcode type */ @ApiMember(DataType="string", Description="barcode type", IsRequired=true, Name="BarcodeType", ParameterType="query") open var barcodeType:eapi_barcode_type_enum? = null /** * barcode value */ @ApiMember(DataType="string", Description="barcode value", IsRequired=true, Name="BarcodeValue", ParameterType="query") open var barcodeValue:String? = null open var barcode:barcode? = null companion object { private val responseType = Object::class.java } override fun getResponseType(): Any? = barcode_forced.responseType } enum class eapi_barcode_type_enum { Code39, Ean13, Qrcode, }