com.omgm.speedy.eps.soap.model.FixedDiscountCardId Maven / Gradle / Ivy
package com.omgm.speedy.eps.soap.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for fixedDiscountCardId complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="fixedDiscountCardId">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="agreementId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="cardId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
* Instances of this class are used for fixed discount cards
*
* @since 1.0.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "fixedDiscountCardId", propOrder = {
"agreementId",
"cardId"
})
public class FixedDiscountCardId {
/**
* Agreement (contract) ID
*/
protected Long agreementId;
/**
* Card ID
*/
protected Long cardId;
/**
* Get aggreement (contract) id
* @return Aggreement (contract) id
*/
public Long getAgreementId() {
return agreementId;
}
/**
* Set aggreement (contract) id
* @param agreementId Aggreement (contract) id
*/
public void setAgreementId(Long agreementId) {
this.agreementId = agreementId;
}
/**
* Get card id
* @return Card id
*/
public Long getCardId() {
return cardId;
}
/**
* Sets card id
* @param cardId Card id
*/
public void setCardId(Long cardId) {
this.cardId = cardId;
}
}