Package com.adyen.model.nexo
Class CapturedSignature
- java.lang.Object
-
- com.adyen.model.nexo.CapturedSignature
-
public class CapturedSignature extends Object
Definition: Numeric value of a handwritten signature. -- Usage: Contain the value of a handwritten signature, e.g. the signature of a cardholder on the merchant payment receipt. Only one format of the signature is allowed, it contains: The size of the pad area where the signature is written, givenJava class for CapturedSignature complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CapturedSignature"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="AreaSize" type="{}AreaSize" minOccurs="0"/> <element name="SignaturePoint" type="{}SignaturePoint" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected AreaSizeareaSizeThe Area size.protected List<SignaturePoint>signaturePointThe Signature point.
-
Constructor Summary
Constructors Constructor Description CapturedSignature()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AreaSizegetAreaSize()Gets the value of the areaSize property.List<SignaturePoint>getSignaturePoint()Gets the value of the signaturePoint property.voidsetAreaSize(AreaSize value)Sets the value of the areaSize property.
-
-
-
Field Detail
-
areaSize
protected AreaSize areaSize
The Area size.
-
signaturePoint
protected List<SignaturePoint> signaturePoint
The Signature point.
-
-
Method Detail
-
getAreaSize
public AreaSize getAreaSize()
Gets the value of the areaSize property.- Returns:
- possible object is
AreaSize
-
setAreaSize
public void setAreaSize(AreaSize value)
Sets the value of the areaSize property.- Parameters:
value- allowed object isAreaSize
-
getSignaturePoint
public List<SignaturePoint> getSignaturePoint()
Gets the value of the signaturePoint property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the signaturePoint property.For example, to add a new item, do as follows:
getSignaturePoint().add(newItem);Objects of the following type(s) are allowed in the list
SignaturePoint- Returns:
- the signature point
-
-