blob: 7a38412c790d1c97e94ae5340586a71017148795 (
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
|
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
}
|