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

com.mercadopago.client.customer.CustomerAddressRequest Maven / Gradle / Ivy

There is a newer version: 2.1.29
Show newest version
package com.mercadopago.client.customer;

import lombok.Builder;
import lombok.Getter;

/** Default address's information. */
@Getter
@Builder
public class CustomerAddressRequest {
  /** Address ID. */
  private final String id;

  /** Zip code. */
  private final String zipCode;

  /** Street name. */
  private final String streetName;

  /** Street number. */
  private final Integer streetNumber;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy