*/
public JTrelloClient(String authKey, String secretKey, String authToken) {
Config config = Config.getInstance(authKey, secretKey, authToken);
this.members = new MemberService(config);
this.organizations = new OrganizationService(config);
this.boards = new BoardService(config);
this.lists = new ListService(config);
this.cards = new CardService(config);
this.checklists = new ChecklistService(config);
this.notifications = new NotificationService(config);