using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace gehGassi.Klarna.OrderManagement { public class ErrorMessageDto { /// /// Gets or Sets ErrorCode /// [JsonProperty("error_code")] public string ErrorCode { get; set; } /// /// Gets or Sets ErrorMessages /// [JsonProperty("error_messages")] public List ErrorMessages { get; set; } /// /// Gets or Sets CorrelationId /// [JsonProperty("correlation_id")] public string CorrelationId { get; set; } } }