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

com.payu.sdk.api.model.CreditCard Maven / Gradle / Ivy

The newest version!
package com.payu.sdk.api.model;

public class CreditCard {

  public String securityCode;

  public String expirationDate;

  private String token;

  private String customerId;

  private String number;

  private Integer expMonth;

  private Integer expYear;

  private String type;

  private String issuerBank;

  private String name;

  private String document;

  private Address address;

  private Boolean processWithoutCvv2;

  public String getToken() {
    return token;
  }

  public void setToken(String token) {
    this.token = token;
  }

  public String getCustomerId() {
    return customerId;
  }

  public void setCustomerId(String customerId) {
    this.customerId = customerId;
  }

  public String getNumber() {
    return number;
  }

  public void setNumber(String number) {
    this.number = number;
  }

  public Integer getExpMonth() {
    return expMonth;
  }

  public void setExpMonth(Integer expMonth) {
    this.expMonth = expMonth;
  }

  public Integer getExpYear() {
    return expYear;
  }

  public void setExpYear(Integer expYear) {
    this.expYear = expYear;
  }

  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  public Address getAddress() {
    return address;
  }

  public void setAddress(Address address) {
    this.address = address;
  }

  public String getIssuerBank() {
    return issuerBank;
  }

  public void setIssuerBank(String issuerBank) {
    this.issuerBank = issuerBank;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getDocument() {

    return document;
  }

  public void setDocument(String document) {

    this.document = document;
  }

  public String getSecurityCode() {

    return securityCode;
  }

  public void setSecurityCode(String securityCode) {

    this.securityCode = securityCode;
  }

  public String getExpirationDate() {

    return expirationDate;
  }

  public void setExpirationDate(String expirationDate) {

    this.expirationDate = expirationDate;
  }

  public Boolean getProcessWithoutCvv2() {

    return processWithoutCvv2;
  }

  public void setProcessWithoutCvv2(Boolean processWithoutCvv2) {

    this.processWithoutCvv2 = processWithoutCvv2;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy