mx.openpay.client.Bin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpay-api-client Show documentation
Show all versions of openpay-api-client Show documentation
Java client for Openpay Services
/*
* COPYRIGHT © 2012-2015. OPENPAY.
* PATENT PENDING. ALL RIGHTS RESERVED.
* OPENPAY & OPENCARD IS A REGISTERED TRADEMARK OF OPENCARD INC.
*
* This software is confidential and proprietary information of OPENCARD INC.
* You shall not disclose such Confidential Information and shall use it only
* in accordance with the company policy.
*/
package mx.openpay.client;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import com.google.gson.annotations.SerializedName;
/**
* @author Eli Lopez, [email protected]
*/
@Getter
@Setter
@ToString
public class Bin {
private String bank;
private String bin;
private String brand;
private String category;
private String country;
@SerializedName("country_code")
private String countryCode;
private String type;
@SerializedName("allowed_online")
private Boolean allowedOnline;
@SerializedName("allowed_santander_points")
private Boolean allowedSantanderPoints;
/** The Bank Code according to SAT. May be null if unknown. */
@SerializedName("bank_code")
private String bankCode;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy