diff options
Diffstat (limited to 'src/IOL.VippsEcommerce/Models/Api/TShippingDetails.cs')
| -rw-r--r-- | src/IOL.VippsEcommerce/Models/Api/TShippingDetails.cs | 32 |
1 files changed, 32 insertions, 0 deletions
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 + { + /// <summary> + /// Gets or Sets Priority + /// </summary> + [JsonPropertyName("priority")] + public int? Priority { get; set; } + + /// <summary> + /// Gets or Sets ShippingCost + /// </summary> + [JsonPropertyName("shippingCost")] + public double? ShippingCost { get; set; } + + /// <summary> + /// Shipping method. Max length: 256 characters. Recommended length for readability on most screens: 25 characters. + /// </summary> + /// <value>Shipping method. Max length: 256 characters. Recommended length for readability on most screens: 25 characters.</value> + [JsonPropertyName("shippingMethod")] + public string ShippingMethod { get; set; } + + /// <summary> + /// Gets or Sets ShippingMethodId + /// </summary> + [JsonPropertyName("shippingMethodId")] + public string ShippingMethodId { get; set; } + } +}
\ No newline at end of file |
