37 lines
853 B
C#
37 lines
853 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 SelectedAddon
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets Type
|
|
/// </summary>
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Price
|
|
/// </summary>
|
|
[JsonProperty("price")]
|
|
public long? Price { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets ExternalId
|
|
/// </summary>
|
|
[JsonProperty("external_id")]
|
|
public string ExternalId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets UserInput
|
|
/// </summary>
|
|
[JsonProperty("user_input")]
|
|
public string UserInput { get; set; }
|
|
}
|
|
}
|