using System.Text.Json.Serialization;
namespace IOL.VippsEcommerce.Models.Api;
public class TTransaction
{
///
/// Amount in øre, if amount is 0 or not provided then full capture will be performed. 32 Bit Integer (2147483647)
///
/// Amount in øre, if amount is 0 or not provided then full capture will be performed. 32 Bit Integer (2147483647)
[JsonPropertyName("amount")]
public int? Amount { get; set; }
///
/// Transaction text to be displayed in Vipps
///
/// Transaction text to be displayed in Vipps
[JsonPropertyName("transactionText")]
public string TransactionText { get; set; }
}