Example #1
0
 public Account createSubAccount(SubAccount subAccount)
 {
     OneSpanSign.API.SubAccount apiSubAccount = new SubAccountConverter(subAccount).ToAPISubAccount();
     OneSpanSign.API.Account    account       = apiClient.createSubAccount(apiSubAccount);
     return(new AccountConverter(account).ToSDKAccount());
 }