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