@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 373 B
TypeScript
/** A shopping cart */
export interface Cart {
/** Cart identifier */
cartId: string;
/** Description of your cart */
description: string;
/** Expiration time */
expire?: string;
/** Items of your cart */
items: number[];
/** Indicates if the cart has already been validated */
readOnly: boolean;
}
//# sourceMappingURL=Cart.d.ts.map