com.global.api.entities.CardIssuerResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.entities;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.Accessors;
@Accessors(chain = true)
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class CardIssuerResponse {
// The result code of the AVS check from the card issuer
public String avsResult;
// Result code from the card issuer
public String result;
// The result code of the CVV check from the card issuer
public String cvvResult;
// The result code of the AVS address check from the card issuer
public String avsAddressResult;
// The result of the AVS postal code check from the card issuer
public String avsPostalCodeResult;
public CardIssuerResponse(String result){
this.result = result;
}
}