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

com.mercadopago.client.order.OrderPayerRequest Maven / Gradle / Ivy

package com.mercadopago.client.order;

import com.mercadopago.resources.common.Address;
import com.mercadopago.resources.common.Identification;
import com.mercadopago.resources.common.Phone;
import lombok.Builder;
import lombok.Getter;

// API version: 1ff4822a-2dfd-4393-800e-a562edb3fe32

/** OrderPayerRequest class. */
@Getter
@Builder
public class OrderPayerRequest {
    /** Payer's email. */
    private String email;

    /** Payer's first name. */
    private String firstName;

    /** Customer ID. */
    private String customerId;

    /** Payer's last name. */
    private String lastName;

    /** Identification information. */
    private Identification identification;

    /** Phone information. */
    private Phone phone;

    /** Address information. */
    private Address address;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy