31 lines
755 B
C#
31 lines
755 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 ErrorMessageDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets ErrorCode
|
|
/// </summary>
|
|
[JsonProperty("error_code")]
|
|
public string ErrorCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets ErrorMessages
|
|
/// </summary>
|
|
[JsonProperty("error_messages")]
|
|
public List<string> ErrorMessages { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets CorrelationId
|
|
/// </summary>
|
|
[JsonProperty("correlation_id")]
|
|
public string CorrelationId { get; set; }
|
|
}
|
|
}
|