34 lines
891 B
C#

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 NoSuchOrderErrorMessage
{
/// <summary>
/// Error code
/// </summary>
/// <value>Error code</value>
[JsonProperty("error_code")]
public string ErrorCode { get; set; }
/// <summary>
/// Error messages
/// </summary>
/// <value>Error messages</value>
[JsonProperty("error_messages")]
public List<string> ErrorMessages { get; set; }
/// <summary>
/// Correlation id. For searching logs.
/// </summary>
/// <value>Correlation id. For searching logs.</value>
[JsonProperty("correlation_id")]
public string CorrelationId { get; set; }
}
}