diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2021-03-31 18:00:22 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2021-03-31 18:00:22 +0200 |
| commit | e6ca7a484d9cc213fb00c34ebf7cb55ace892c04 (patch) | |
| tree | e885d823c224d55503286b1dab207fcc7c5c68d1 /src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs | |
| download | dotnet-vipps-ecommerce-e6ca7a484d9cc213fb00c34ebf7cb55ace892c04.tar.xz dotnet-vipps-ecommerce-e6ca7a484d9cc213fb00c34ebf7cb55ace892c04.zip | |
Initial commit
Diffstat (limited to 'src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs')
| -rw-r--r-- | src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs | 25 |
1 files changed, 25 insertions, 0 deletions
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 + { + /// <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 + } +}
\ No newline at end of file |
