Class AdditionalCheckbox
Inheritance
System.Object
    AdditionalCheckbox
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: Klarna.Rest.Core.Model
Assembly: Klarna.Rest.Core.dll
Syntax
public class AdditionalCheckbox
  Properties
| Improve this Doc View SourceChecked
Default state of the additional checkbox. It will use this value when loaded for the first time.
Declaration
[JsonProperty(PropertyName = "checked")]
public bool Checked { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Remarks
Required
Required
Whether it is required for the consumer to check the additional checkbox box or not in order to complete the purchase.
Declaration
[JsonProperty(PropertyName = "required")]
public bool Required { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Remarks
Required
Text
Text that will be displayed to the consumer aside the checkbox. Links and formatting can be added using Markdown. (max 255 characters)
Declaration
[JsonProperty(PropertyName = "text")]
public string Text { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Remarks
Required