34 lines
896 B
C#
34 lines
896 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 CancelNotAllowedErrorMessage
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|