blob: f336bce4b288046e20e97aee4465627f89f49f06 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api
{
public class VippsPaymentActionRequest
{
/// <summary>
/// Gets or Sets MerchantInfo
/// </summary>
[JsonPropertyName("merchantInfo")]
public TMerchantInfoPayment MerchantInfo { get; set; }
/// <summary>
/// Gets or Sets Transaction
/// </summary>
[JsonPropertyName("transaction")]
public TTransaction Transaction { get; set; }
}
}
|