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 { /// /// 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: [\"disable_autofocus\", \"minimal_confirmation\"] /// /// 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: [\"disable_autofocus\", \"minimal_confirmation\"] [JsonProperty("options")] public List Options { get; set; } } }