View Source Appwrite.Types.HealthTime (appwrite v0.2.1)
Represents the result of a server time check against Google's NTP server.
Fields
remote_time(non_neg_integer()): Current time of the remote NTP server (Unix timestamp).local_time(non_neg_integer()): Current time of the Appwrite server (Unix timestamp).diff(integer()): Difference in milliseconds between the remote NTP server and the Appwrite server.
Summary
Types
@type t() :: %Appwrite.Types.HealthTime{ diff: integer(), local_time: non_neg_integer(), remote_time: non_neg_integer() }