public IList <Account> getSubAccounts() { IList <API.Account> apiAccounts = apiClient.getSubAccounts(); IList <Account> accounts = new List <Account>(); foreach (OneSpanSign.API.Account account in apiAccounts) { accounts.Add(new AccountConverter(account).ToSDKAccount()); } return(accounts); }