20 lines
935 B
C#
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: [\"disable_autofocus\", \"minimal_confirmation\"]
|
|
/// </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: [\"disable_autofocus\", \"minimal_confirmation\"]</value>
|
|
[JsonProperty("options")]
|
|
public List<string> Options { get; set; }
|
|
}
|
|
}
|