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 MerchantRequested
{
///
/// Informs whether the additional_checkbox is checked or not, when applicable.
///
/// Informs whether the additional_checkbox is checked or not, when applicable.
[JsonProperty("additional_checkbox")]
public bool? AdditionalCheckbox { get; private set; }
///
/// Informs whether the additional_checkboxes is checked or not, when applicable.
///
/// Informs whether the additional_checkboxes is checked or not, when applicable.
[JsonProperty("additional_checkboxes")]
public List AdditionalCheckboxes { get; private set; }
}
}