using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api;
public class TShippingDetails
{
///
/// Gets or Sets Priority
///
[JsonPropertyName("priority")]
public int? Priority { get; set; }
///
/// Gets or Sets ShippingCost
///
[JsonPropertyName("shippingCost")]
public double? ShippingCost { get; set; }
///
/// Shipping method. Max length: 256 characters. Recommended length for readability on most screens: 25 characters.
///
/// Shipping method. Max length: 256 characters. Recommended length for readability on most screens: 25 characters.
[JsonPropertyName("shippingMethod")]
public string ShippingMethod { get; set; }
///
/// Gets or Sets ShippingMethodId
///
[JsonPropertyName("shippingMethodId")]
public string ShippingMethodId { get; set; }
}