/// <summary>
 /// Creates a new Norwegian BankID mobile session to start the identification process.
 /// </summary>
 /// <param name="createBankIdMobileRequest"></param>
 /// <returns></returns>
 public async Task <CreateBankIDMobileResponse> CreateBankIdMobileSessionAsync(
     CreateBankIDMobileRequest createBankIdMobileRequest)
 {
     return(await PostAsync <CreateBankIDMobileResponse>($"{Urls.Identification}/no/bankid/mobile",
                                                         createBankIdMobileRequest));
 }
 /// <summary>
 /// Creates a new Norwegian BankID mobile session to start the identification process.
 /// </summary>
 /// <param name="createBankIdMobileRequest"></param>
 /// <returns></returns>
 public CreateBankIDMobileResponse CreateBankIdMobileSession(CreateBankIDMobileRequest createBankIdMobileRequest)
 {
     return(Post <CreateBankIDMobileResponse>($"{Urls.Identification}/no/bankid/mobile",
                                              createBankIdMobileRequest));
 }