aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce/Models/Api/TShippingDetails.cs
blob: 72ac7f2225fcd4255b9c9346927fe651fb2a0720 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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; }
    }
}