blob: ce0cbc34d51cea66275ae07ba9f73016c244fb0a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api
{
public class TMerchantInfoPayment
{
/// <summary>
/// Unique id for this merchant's sales channel: website, mobile app etc. Short name: MSN.
/// </summary>
/// <value>Unique id for this merchant's sales channel: website, mobile app etc. Short name: MSN.</value>
[JsonPropertyName("merchantSerialNumber")]
public string MerchantSerialNumber { get; set; }
}
}
|