Class ShippingMethod
Stores settings for a shipping method
[JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))]
public class ShippingMethod : IEntity
- Inheritance
-
ShippingMethod
- Implements
- Inherited Members
Properties
Baskets
[JsonIgnore]
public IEnumerable<Basket> Baskets { get; set; }
Property Value
Calculator
public string? Calculator { get; set; }
Property Value
CalculatorSettings
public string? CalculatorSettings { get; set; }
Property Value
Description
public string Description { get; set; }
Property Value
Id
public Guid Id { get; set; }
Property Value
Name
public string Name { get; set; }
Property Value
Orders
[JsonIgnore]
public IEnumerable<Order> Orders { get; set; }
Property Value
Store
[JsonIgnore]
public Store Store { get; set; }
Property Value
StoreId
public Guid StoreId { get; set; }
Property Value
UserSelectable
public bool UserSelectable { get; set; }