using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace gehGassi.Klarna.Checkout
{
public class MerchantRequestedCheckbox
{
///
/// Gets or Sets Id
///
[JsonProperty("id")]
public string Id { get; set; }
///
/// Gets or Sets Checked
///
[JsonProperty("checked")]
public bool? Checked { get; set; }
}
}