22 lines
564 B
C#
22 lines
564 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace gehGassi.Klarna.OrderManagement
|
|
{
|
|
public class UpdateShippingInfo
|
|
{
|
|
/// <summary>
|
|
/// New shipping info. Maximum: 500 items.
|
|
/// </summary>
|
|
/// <value>New shipping info. Maximum: 500 items.</value>
|
|
[Required]
|
|
[JsonProperty("shipping_info")]
|
|
public List<ShippingInfo> ShippingInfo { get; set; }
|
|
}
|
|
}
|