com.mercadopago.resources.datastructures.advancedpayment.Source Maven / Gradle / Ivy
package com.mercadopago.resources.datastructures.advancedpayment;
public class Source {
private Integer id;
private String name;
private String type;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy