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

com.mercadopago.client.merchantorder.MerchantOrderItemRequest 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;

/** Item information. */
@Getter
@Builder
public class MerchantOrderItemRequest {
  /** Item code. */
  private final String id;

  /** Item name. */
  private final String title;

  /** Item description. */
  private final String description;

  /** Image URL. */
  private final String pictureUrl;

  /** Category of the item. */
  private final String categoryId;

  /** Item's quantity. */
  private final int quantity;

  /** Unit price. */
  private final BigDecimal unitPrice;

  /** Currency ID. ISO_4217 code. */
  private final String currencyId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy