// RB2 Core Connect namespace CoreConnect.Payments; public class PaymentLinkResponse{ public decimal? AmountValue { get; set; } public string? CountryCode { get; set; } public string? Description { get; set; } public DateTime? ExpiresAt { get; set; } public string? Id { get; set; } public string? MerchantAccount { get; set; } public string? Reference { get; set; } public string? ShopperLocale { get; set; } public string? ShopperReference { get; set; } public string? Url { get; set; } public string? Status { get; set; }}