blob: 9374fe37332ee547b4d766e149e620cc45c4992a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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; }
}
|