Version 3.0.260

This commit is contained in:
Oliver Hauff 2021-11-07 21:28:13 +01:00
parent 5a26bf273b
commit 4df8aa98aa
134 changed files with 8098 additions and 567 deletions

View file

@ -62,6 +62,10 @@ namespace TINK.Repository.Response
[DataMember]
public TariffDescription tariff_description { get; private set; }
#endif
/// <summary> Loading state of motor battery in % ]0..100[. </summary>
[DataMember]
public string bike_charge { get; private set; }
/// <summary>
/// Textual description of response.
/// </summary>
@ -70,6 +74,5 @@ namespace TINK.Repository.Response
{
return $"Bike {bike}{(station != null ? $", at station {station}" : string.Empty)}{(!string.IsNullOrEmpty(description) ? $", {description}" : string.Empty)}{(!string.IsNullOrEmpty(state) ? $", status={state}" : string.Empty)}.";
}
}
}

View file

@ -47,5 +47,13 @@ namespace TINK.Repository.Response
/// </summary>
[DataMember]
public string max_eur_per_day { get; private set; }
/// <summary> Info about operator agb as HTML (i.g. text and hyperlink). </summary>
[DataMember]
public string operator_agb { get; private set; }
/// <summary> Text which informs users about GPS tracking if tracking is on. </summary>
[DataMember]
public string track_info { get; private set; }
}
}