blob: 303bd67f5f5f5be021e1c3725cec42cef2808ad4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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; }
}
|