com.mercadopago.resources.datastructures.payment.Payer Maven / Gradle / Ivy
package com.mercadopago.resources.datastructures.payment;
/**
* Mercado Pago SDK
* Payer Payment class
*
* Created by Eduardo Paoletta on 12/2/16.
*/
public class Payer {
private type type = null;
public enum type {
customer,
registered,
guest
}
private String id = null;
private String email = null;
private Identification identification = null;
private PayerPhone phone = null;
private String firstName = null;
private String lastName = null;
public Payer.type getType() {
return type;
}
public Payer setType(Payer.type type) {
this.type = type;
return this;
}
public String getId() {
return id;
}
public Payer setId(String id) {
this.id = id;
return this;
}
public String getEmail() {
return email;
}
public Payer setEmail(String email) {
this.email = email;
return this;
}
public Identification getIdentification() {
return identification;
}
public Payer setIdentification(Identification identification) {
this.identification = identification;
return this;
}
public PayerPhone getPhone() {
return phone;
}
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy