Package com.adyen.model.nexo
Class OutputBarcode
- java.lang.Object
-
- com.adyen.model.nexo.OutputBarcode
-
public class OutputBarcode extends Object
Definition: BarCode content to display or print. -- Usage: Various usage of barcodeJava class for OutputBarcode complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OutputBarcode"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="BarcodeValue" use="required" type="{}BarcodeValue" /> <attribute name="BarcodeType" type="{}BarcodeType" default="EAN13" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BarcodeTypebarcodeTypeprotected StringbarcodeValue
-
Constructor Summary
Constructors Constructor Description OutputBarcode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BarcodeTypegetBarcodeType()Gets the value of the barcodeType property.StringgetBarcodeValue()Gets the value of the barcodeValue property.voidsetBarcodeType(BarcodeType value)Sets the value of the barcodeType property.voidsetBarcodeValue(String value)Sets the value of the barcodeValue property.
-
-
-
Field Detail
-
barcodeValue
protected String barcodeValue
-
barcodeType
protected BarcodeType barcodeType
-
-
Method Detail
-
getBarcodeValue
public String getBarcodeValue()
Gets the value of the barcodeValue property.- Returns:
- possible object is
String
-
setBarcodeValue
public void setBarcodeValue(String value)
Sets the value of the barcodeValue property.- Parameters:
value- allowed object isString
-
getBarcodeType
public BarcodeType getBarcodeType()
Gets the value of the barcodeType property.- Returns:
- possible object is
BarcodeType
-
setBarcodeType
public void setBarcodeType(BarcodeType value)
Sets the value of the barcodeType property.- Parameters:
value- allowed object isBarcodeType
-
-