From e6ca7a484d9cc213fb00c34ebf7cb55ace892c04 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Wed, 31 Mar 2021 18:00:22 +0200 Subject: Initial commit --- src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs (limited to 'src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs') diff --git a/src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs b/src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs new file mode 100644 index 0000000..bf579a4 --- /dev/null +++ b/src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs @@ -0,0 +1,25 @@ +using System.Text.Json.Serialization; + +namespace IOL.VippsEcommerce.Models.Api +{ + public enum EStatusEnum + { + /// + /// Enum Cancelled for value: Cancelled + /// + [JsonPropertyName("Cancelled")] + CANCELLED = 1, + + /// + /// Enum Captured for value: Captured + /// + [JsonPropertyName("Captured")] + CAPTURED = 2, + + /// + /// Enum Refund for value: Refund + /// + [JsonPropertyName("Refund")] + REFUND = 3 + } +} \ No newline at end of file -- cgit v1.3