mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-06 02:56:32 +01:00
59 lines
1.7 KiB
C#
59 lines
1.7 KiB
C#
using System.Runtime.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace ShareeBike.Repository.Response
|
|
{
|
|
[DataContract]
|
|
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
|
|
public class ResponseBase : CopriVersion
|
|
{
|
|
[DataMember]
|
|
public string response_state { get; private set; }
|
|
|
|
[DataMember]
|
|
public string response { get; private set; }
|
|
|
|
[DataMember]
|
|
public string response_text { get; private set; }
|
|
|
|
[DataMember]
|
|
public string authcookie { get; private set; }
|
|
|
|
/// <summary> Message shown to user.</summary>
|
|
[DataMember]
|
|
public string merchant_message { get; private set; }
|
|
|
|
/// <summary> Initial map display area.</summary>
|
|
[DataMember]
|
|
public MapSpan init_map { get; private set; }
|
|
|
|
/// <summary> Url of page holding agb info. </summary>
|
|
[DataMember]
|
|
public string agb_html { get; private set; }
|
|
|
|
/// <summary> Url of page holding instructions how to rent bikes. </summary>
|
|
[DataMember]
|
|
public string bike_info_html { get; private set; }
|
|
|
|
/// <summary> Url of page holding privacy info. </summary>
|
|
[DataMember]
|
|
public string privacy_html { get; private set; }
|
|
|
|
/// <summary> Url of page holding impress info. </summary>
|
|
[DataMember]
|
|
public string impress_html { get; private set; }
|
|
|
|
/// <summary> Url of page holding tariff info. </summary>
|
|
[DataMember]
|
|
public string tariff_info_html { get; private set; }
|
|
|
|
/// <summary> Textual description of response. </summary>
|
|
public override string ToString()
|
|
{
|
|
return $"Response state is \"{response_state ?? string.Empty}\", " +
|
|
$"auth cookie is \"{authcookie ?? string.Empty}\" and response is \"{response_text ?? string.Empty}\", " +
|
|
$"code \"{response ?? string.Empty}\"" +
|
|
$"response text \"{response_text ?? string.Empty}\".";
|
|
}
|
|
}
|
|
}
|