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