Class MemberAffiliationResponse
- java.lang.Object
-
- com.inteliqua.rest.customer.payload.memberaffiliation.response.MemberAffiliationResponse
-
- All Implemented Interfaces:
com.qivos.util.rest.mappers.APIResponseDTO
public class MemberAffiliationResponse extends Object implements com.qivos.util.rest.mappers.APIResponseDTO
Represents the response containing member affiliation information. This class encapsulates the details of the merchant affiliation with a member, including correlation codes, VAT number, QC code, and relevant dates.- Author:
- ckonstantakis
-
-
Constructor Summary
Constructors Constructor Description MemberAffiliationResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetAffiliationDate()Gets the affiliation date of the member.StringgetIntegrationCorrelationCode()Gets the integration correlation code.DategetLastModificationDate()Gets the last modification date of the affiliation.StringgetMerchantCompanyName()Gets the merchant company name.StringgetMerchantQCCode()Gets the merchant QC code.StringgetMerchantVatNumber()Gets the merchant VAT number.voidsetAffiliationDate(Date affiliationDate)Sets the affiliation date of the member.voidsetIntegrationCorrelationCode(String integrationCorrelationCode)Sets the integration correlation code.voidsetLastModificationDate(Date lastModificationDate)Sets the last modification date of the affiliation.voidsetMerchantCompanyName(String merchantCompanyName)Sets the merchant company name.voidsetMerchantQCCode(String merchantQCCode)Sets the merchant QC code.voidsetMerchantVatNumber(String merchantVatNumber)Sets the merchant VAT number.
-
-
-
Method Detail
-
getIntegrationCorrelationCode
public String getIntegrationCorrelationCode()
Gets the integration correlation code.- Returns:
- the integration correlation code
-
setIntegrationCorrelationCode
public void setIntegrationCorrelationCode(String integrationCorrelationCode)
Sets the integration correlation code.- Parameters:
integrationCorrelationCode- the new correlation code
-
getMerchantVatNumber
public String getMerchantVatNumber()
Gets the merchant VAT number.- Returns:
- the merchant VAT number
-
setMerchantVatNumber
public void setMerchantVatNumber(String merchantVatNumber)
Sets the merchant VAT number.- Parameters:
merchantVatNumber- the new merchant VAT number
-
getMerchantQCCode
public String getMerchantQCCode()
Gets the merchant QC code.- Returns:
- the merchant QC code
-
setMerchantQCCode
public void setMerchantQCCode(String merchantQCCode)
Sets the merchant QC code.- Parameters:
merchantQCCode- the new merchant QC code
-
getMerchantCompanyName
public String getMerchantCompanyName()
Gets the merchant company name.- Returns:
- the merchant company name
-
setMerchantCompanyName
public void setMerchantCompanyName(String merchantCompanyName)
Sets the merchant company name.- Parameters:
merchantCompanyName- the new merchant company name
-
getLastModificationDate
public Date getLastModificationDate()
Gets the last modification date of the affiliation.- Specified by:
getLastModificationDatein interfacecom.qivos.util.rest.mappers.APIResponseDTO- Returns:
- the last modification date
-
setLastModificationDate
public void setLastModificationDate(Date lastModificationDate)
Sets the last modification date of the affiliation.- Specified by:
setLastModificationDatein interfacecom.qivos.util.rest.mappers.APIResponseDTO- Parameters:
lastModificationDate- the new last modification date
-
getAffiliationDate
public Date getAffiliationDate()
Gets the affiliation date of the member.- Returns:
- the affiliation date
-
setAffiliationDate
public void setAffiliationDate(Date affiliationDate)
Sets the affiliation date of the member.- Parameters:
affiliationDate- the new affiliation date
-
-