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

com.mercadopago.client.merchantorder.MerchantOrderShippingOptionRequest Maven / Gradle / Ivy

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

import java.math.BigDecimal;
import lombok.Builder;
import lombok.Getter;

/** Shipping options. */
@Getter
@Builder
public class MerchantOrderShippingOptionRequest {
  /** Shipping option ID. */
  private final Long id;

  /** Net cost absorbed by the receiver. */
  private final BigDecimal cost;

  /** Currency ID. */
  private final String currencyId;

  /** Estimated delivery time information. */
  private final MerchantOrderShippingEstimatedDeliveryRequest estimatedDelivery;

  /** Net cost of the shipping. */
  private final BigDecimal listCost;

  /** Option name. */
  private final String name;

  /** Shipping method ID. */
  private final Long shippingMethodId;

  /** Shipping time information. */
  private final MerchantOrderShippingSpeedRequest speed;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy