Skip to content

ShippingMethodResponse

// RB2 Core Connect
using CoreConnect.Commerce.Core;
namespace CoreConnect.Commerce.Cart;
public class ShippingMethodResponse
{
public string? Id { get; set; }
public string? Name { get; set; }
public List<Prices>? Prices { get; set; }
}
public class Prices
{
public Money? FreeAbove { get; set; }
public Money? Price { get; set; }
public IEnumerable<Tier>? Tiers { get; set; }
}
public class Tier
{
public decimal MinAmount { get; set; }
public Money? Price { get; set; }
}