41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace gehGassi.Klarna.OrderManagement
|
|
{
|
|
public class Location
|
|
{
|
|
/// <summary>
|
|
/// The location id
|
|
/// </summary>
|
|
/// <value>The location id</value>
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// The display name of the location
|
|
/// </summary>
|
|
/// <value>The display name of the location</value>
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// The price for this location
|
|
/// </summary>
|
|
/// <value>The price for this location</value>
|
|
[JsonProperty("price")]
|
|
public long? Price { get; set; }
|
|
|
|
/// <summary>
|
|
/// The address of the location
|
|
/// </summary>
|
|
/// <value>The address of the location</value>
|
|
[JsonProperty("address")]
|
|
public Address Address { get; set; }
|
|
}
|
|
}
|