namespace CoreConnect.Commerce.Cart;
/// The create cart request.
public class CartUpdateRequest
public required string Id { get; set; }
/// Optional anonymous user Identifier.
public string? AnonymousId { get; set; }
public string? CustomerEmail { get; set; }
public CartAddress? ShippingAddress { get; set; }
public CartAddress? BillingAddress { get; set; }
public DeliveryComment? DeliveryComment { get; set; }
public string? DiscountCode { get; set; }
public ExternalShippingOptions? ExternalShippingOptions { get; set; }
public BusinessInformation? BusinessInformation { get; set; }