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

com.mercadopago.client.preference.PreferenceReceiverAddressRequest Maven / Gradle / Ivy

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

import lombok.Builder;
import lombok.Getter;

/** Shipping address. */
@Getter
@Builder
public class PreferenceReceiverAddressRequest {
  /** Zip code. */
  private final String zipCode;

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

  /** Street number. */
  private final String streetNumber;

  /** Country. */
  private final String countryName;

  /** State. */
  private final String stateName;

  /** Floor. */
  private final String floor;

  /** Apartment. */
  private final String apartment;

  /** City name. */
  private final String cityName;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy