From e6ca7a484d9cc213fb00c34ebf7cb55ace892c04 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Wed, 31 Mar 2021 18:00:22 +0200 Subject: Initial commit --- .../Models/Api/TShippingDetails.cs | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/IOL.VippsEcommerce/Models/Api/TShippingDetails.cs (limited to 'src/IOL.VippsEcommerce/Models/Api/TShippingDetails.cs') diff --git a/src/IOL.VippsEcommerce/Models/Api/TShippingDetails.cs b/src/IOL.VippsEcommerce/Models/Api/TShippingDetails.cs new file mode 100644 index 0000000..72ac7f2 --- /dev/null +++ b/src/IOL.VippsEcommerce/Models/Api/TShippingDetails.cs @@ -0,0 +1,32 @@ +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; } + } +} \ No newline at end of file -- cgit v1.3