Skip to content

PaymentMethodsRequest

// RB2 Core Connect
namespace CoreConnect.Payments;
public record PaymentMethodsRequest
{
public PaymentMethodsRequest(string? checkoutId, string? countryCode = null, bool isOrderId = false, bool? isMobileDevice = null)
{
CheckoutId = checkoutId;
CountryCode = countryCode;
IsOrderId = isOrderId;
IsMobileDevice = isMobileDevice;
}
public string? CheckoutId { get; set; }
public string? CountryCode { get; set; }
public bool IsOrderId { get; set; }
public bool? IsMobileDevice { get; set; }
}