diff options
Diffstat (limited to 'src/IOL.VippsEcommerce/Models/Api/TTransactionInfo.cs')
| -rw-r--r-- | src/IOL.VippsEcommerce/Models/Api/TTransactionInfo.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/IOL.VippsEcommerce/Models/Api/TTransactionInfo.cs b/src/IOL.VippsEcommerce/Models/Api/TTransactionInfo.cs new file mode 100644 index 0000000..30e62f9 --- /dev/null +++ b/src/IOL.VippsEcommerce/Models/Api/TTransactionInfo.cs @@ -0,0 +1,15 @@ +using System.Text.Json.Serialization; +using IOL.VippsEcommerce.Models.Api; + +namespace IOL.VippsEcommerce.Models.Api +{ + public class TTransactionInfo + { + /// <summary> + /// Status which gives the current state of the payment within Vipps. See the [API guide](https://github.com/vippsas/vipps-ecom-api/blob/master/vipps-ecom-api.md#responses-from-requests) for more information. + /// </summary> + /// <value>Status which gives the current state of the payment within Vipps. See the [API guide](https://github.com/vippsas/vipps-ecom-api/blob/master/vipps-ecom-api.md#responses-from-requests) for more information.</value> + [JsonPropertyName("status")] + public EStatusEnum Status { get; set; } + } +}
\ No newline at end of file |
