/* Options: Date: 2026-03-13 22:05:46 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: barcode_forced.* //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="/barcode/{BarcodeType}/{BarcodeValue}", Verbs="GET") public static class barcode implements IReturn { /** * barcode type */ @ApiMember(DataType="string", Description="barcode type", IsRequired=true, Name="BarcodeType", ParameterType="query") public eapi_barcode_type_enum barcodeType = null; /** * barcode value */ @ApiMember(DataType="string", Description="barcode value", IsRequired=true, Name="BarcodeValue", ParameterType="query") public String barcodeValue = null; public eapi_barcode_type_enum getBarcodeType() { return barcodeType; } public barcode setBarcodeType(eapi_barcode_type_enum value) { this.barcodeType = value; return this; } public String getBarcodeValue() { return barcodeValue; } public barcode setBarcodeValue(String value) { this.barcodeValue = value; return this; } private static Object responseType = Object.class; public Object getResponseType() { return 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)") public static class barcode_forced implements IReturn { /** * Basic Auth */ @ApiMember(DataType="string", Description="Basic Auth", IsRequired=true, Name="BasicAuth", ParameterType="query") public String basicAuth = null; /** * mime-type */ @ApiMember(DataType="string", Description="mime-type", IsRequired=true, Name="MimeType", ParameterType="query") public String mimeType = null; /** * barcode type */ @ApiMember(DataType="string", Description="barcode type", IsRequired=true, Name="BarcodeType", ParameterType="query") public eapi_barcode_type_enum barcodeType = null; /** * barcode value */ @ApiMember(DataType="string", Description="barcode value", IsRequired=true, Name="BarcodeValue", ParameterType="query") public String barcodeValue = null; public barcode barcode = null; public String getBasicAuth() { return basicAuth; } public barcode_forced setBasicAuth(String value) { this.basicAuth = value; return this; } public String getMimeType() { return mimeType; } public barcode_forced setMimeType(String value) { this.mimeType = value; return this; } public eapi_barcode_type_enum getBarcodeType() { return barcodeType; } public barcode_forced setBarcodeType(eapi_barcode_type_enum value) { this.barcodeType = value; return this; } public String getBarcodeValue() { return barcodeValue; } public barcode_forced setBarcodeValue(String value) { this.barcodeValue = value; return this; } public barcode getBarcode() { return barcode; } public barcode_forced setBarcode(barcode value) { this.barcode = value; return this; } private static Object responseType = Object.class; public Object getResponseType() { return responseType; } } public static enum eapi_barcode_type_enum { Code39, Ean13, Qrcode; } }