timerService.GetCurrentTime( new App42CallBack() );
public class betaPeriodIsValidCallBack : App42CallBack
{
public void OnSuccess(object response)
{
Timer timer = (Timer)response;
When I make a call to timerService.GetCurrentTime() what is the format of the Timer response object in this callback code snippet?