public static async Task Run(GeotabDataOnlyPlanAPI api)
        {
            ConsoleUtility.LogExampleStarted(typeof(GetSystemTimeUtcAsyncExample).Name);

            try
            {
                DateTime systemTimeUtc = await api.GetSystemTimeUtcAsync();
            }
            catch (Exception ex)
            {
                ConsoleUtility.LogError(ex);
            }

            ConsoleUtility.LogExampleFinished(typeof(GetSystemTimeUtcAsyncExample).Name);
        }