69 public BINRange(
int BIN_start,
int BIN_end, Integer number_length, String
scheme, String
brand, String type, String
country, String bank_name, String bank_url, String bank_phone, String bank_city) {
70 this.BINStart = BIN_start;
71 this.BINEnd = BIN_end;
73 this.numberLength = number_length;
74 this.scheme = StringUtils.defaultIfBlank(
scheme,
null);
75 this.brand = StringUtils.defaultIfBlank(
brand,
null);
76 this.cardType = StringUtils.defaultIfBlank(type,
null);
77 this.country = StringUtils.defaultIfBlank(
country,
null);
78 this.bankName = StringUtils.defaultIfBlank(bank_name,
null);
79 this.bankURL = StringUtils.defaultIfBlank(bank_url,
null);
80 this.bankPhoneNumber = StringUtils.defaultIfBlank(bank_phone,
null);
81 this.bankCity = StringUtils.defaultIfBlank(bank_city,
null);