All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blockchyp.client.dto.AvsResponse Maven / Gradle / Ivy

Go to download

This is the recommended means for Java developers to access the BlockChyp gateway and BlockChyp terminals.

There is a newer version: 2.19.0
Show newest version
package com.blockchyp.client.dto;

import com.fasterxml.jackson.annotation.JsonValue;

public enum AvsResponse {

    NOT_APPLICABLE(""),
    NOT_SUPPORTED("not_supported"),
    RETRY("retry"),
    NO_MATCH("no_match"),
    ADDRESS_MATCH("address_match"),
    POSTAL_CODE_MATCH("zip_match"),
    ADDRESS_AND_POSTAL_CODE_MATCH("match");

    private final String code;

    private AvsResponse(String code) {
        this.code = code;
    }

    @JsonValue
    public String getCode() {
        return this.code;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy