blob: cc3f509620b69c633d7cbcc3fe92f150a8a8d12d (
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
|
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; }
}
|