00001 // 00002 // TDApi.h 00003 // ToodledoAPI 00004 // 00005 // Created by Alex Leutgöb on 08.11.09. 00006 // Copyright 2009 alexleutgoeb.com. All rights reserved. 00007 // 00008 00009 #import <Foundation/Foundation.h> 00010 #import "GtdApi.h" 00011 00012 00013 @interface TDApi : NSObject <GtdApi> { 00014 @private 00015 NSString *userId; 00016 NSString *key; 00017 NSDate *keyValidity; 00018 NSString *passwordHash; 00019 NSTimeInterval servertimeDifference; 00020 NSDictionary *accountInfo; 00021 } 00022 00023 @end