com.adyen.model.nexo.LoyaltyAccount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
package com.adyen.model.nexo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Data related to a loyalty account processed in the transaction. -- Usage: This data structure conveys the identification of the account and the associated loyalty brand.
*
* Java class for LoyaltyAccount complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LoyaltyAccount">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="LoyaltyAccountID" type="{}LoyaltyAccountID"/>
* </sequence>
* <attribute name="LoyaltyBrand" type="{}LoyaltyBrand" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LoyaltyAccount", propOrder = {
"loyaltyAccountID"
})
public class LoyaltyAccount {
/**
* The Loyalty account id.
*/
@XmlElement(name = "LoyaltyAccountID", required = true)
protected LoyaltyAccountID loyaltyAccountID;
/**
* The Loyalty brand.
*/
@XmlAttribute(name = "LoyaltyBrand")
protected String loyaltyBrand;
/**
* Gets the value of the loyaltyAccountID property.
*
* @return possible object is {@link LoyaltyAccountID }
*/
public LoyaltyAccountID getLoyaltyAccountID() {
return loyaltyAccountID;
}
/**
* Sets the value of the loyaltyAccountID property.
*
* @param value allowed object is {@link LoyaltyAccountID }
*/
public void setLoyaltyAccountID(LoyaltyAccountID value) {
this.loyaltyAccountID = value;
}
/**
* Gets the value of the loyaltyBrand property.
*
* @return possible object is {@link String }
*/
public String getLoyaltyBrand() {
return loyaltyBrand;
}
/**
* Sets the value of the loyaltyBrand property.
*
* @param value allowed object is {@link String }
*/
public void setLoyaltyBrand(String value) {
this.loyaltyBrand = value;
}
}