etebase_account_force_server_url method

int etebase_account_force_server_url(
  1. Pointer<EtebaseAccount> this_,
  2. Pointer<Char> server_url
)

Change the server URL for this account handle

@param this_ the object handle @param server_url the new server URL to be set

Implementation

int etebase_account_force_server_url(
  ffi.Pointer<EtebaseAccount> this_,
  ffi.Pointer<ffi.Char> server_url,
) {
  return _etebase_account_force_server_url(
    this_,
    server_url,
  );
}