blob: bf579a411c264bf70e410c2390509d355f8c5462 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api
{
public enum EStatusEnum
{
/// <summary>
/// Enum Cancelled for value: Cancelled
/// </summary>
[JsonPropertyName("Cancelled")]
CANCELLED = 1,
/// <summary>
/// Enum Captured for value: Captured
/// </summary>
[JsonPropertyName("Captured")]
CAPTURED = 2,
/// <summary>
/// Enum Refund for value: Refund
/// </summary>
[JsonPropertyName("Refund")]
REFUND = 3
}
}
|