20 lines
935 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 Gui
{
/// <summary>
/// An array of options to define the checkout behaviour. Supported options: disable_autofocus, minimal_confirmation. The gui object is an array of options to modify checkout client ui behaviours. Examples: [\&quot;disable_autofocus\&quot;, \&quot;minimal_confirmation\&quot;]
/// </summary>
/// <value>An array of options to define the checkout behaviour. Supported options: disable_autofocus, minimal_confirmation. The gui object is an array of options to modify checkout client ui behaviours. Examples: [\&quot;disable_autofocus\&quot;, \&quot;minimal_confirmation\&quot;]</value>
[JsonProperty("options")]
public List<string> Options { get; set; }
}
}