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

net.minidev.ovh.api.order.cart.OvhCart Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package net.minidev.ovh.api.order.cart;

import java.util.Date;

/**
 * A shopping cart
 */
public class OvhCart {
	/**
	 * Cart identifier
	 *
	 * canBeNull && readOnly
	 */
	public String cartId;

	/**
	 * Expiration time
	 *
	 * canBeNull && readOnly
	 */
	public Date expire;

	/**
	 * Description of your cart
	 *
	 * canBeNull && readOnly
	 */
	public String description;

	/**
	 * Indicates if the cart has already been validated
	 *
	 * canBeNull && readOnly
	 */
	public Boolean readOnly;

	/**
	 * Items of your cart
	 *
	 * canBeNull && readOnly
	 */
	public Long[] items;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy