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

com.mercadopago.resources.datastructures.paymentmethod.CardNumber Maven / Gradle / Ivy

package com.mercadopago.resources.datastructures.paymentmethod;

public class CardNumber {

  private final String validation;
  private final Integer length;

  public CardNumber(String validation, Integer length) {
    this.validation = validation;
    this.length = length;
  }

  public String getValidation() {
    return validation;
  }

  public Integer getLength() {
    return length;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy