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