sharee.bike-App/TINKLib/Repository/Response/ResponseBase.cs
2021-06-26 20:57:55 +02:00

30 lines
923 B
C#

using System.Runtime.Serialization;
namespace TINK.Repository.Response
{
[DataContract]
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> Textual description of response. </summary>
public new 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}\".";
}
}
}