Class LoginBiometricRequestPsd2Dto

java.lang.Object
es.kukenan.smartfi.microservice.clients.dto.LoginBiometricRequestPsd2Dto
All Implemented Interfaces:
Serializable

public class LoginBiometricRequestPsd2Dto extends Object implements Serializable
Dto used for biometric login.
See Also:
  • Field Details

    • biometricToken

      private String biometricToken
      Biometric token of the user for login.
    • deviceId

      @NotBlank private @NotBlank String deviceId
      Identifier for login device.
    • documentId

      private String documentId
      Identifier for user document.
    • password

      private String password
      User Password account.
    • companyId

      @NotBlank private @NotBlank es.kukenan.smartfi.common.service.jwt.enums.EntityBankEnum companyId
      Bank entity for login request.
    • channel

      private es.kukenan.smartfi.common.service.jwt.enums.ChannelEnum channel
      Channel for login request.
  • Constructor Details

    • LoginBiometricRequestPsd2Dto

      public LoginBiometricRequestPsd2Dto(String biometricToken, String deviceId, es.kukenan.smartfi.common.service.jwt.enums.EntityBankEnum companyId, es.kukenan.smartfi.common.service.jwt.enums.ChannelEnum channel)
      Dto for biometric login.
      Parameters:
      biometricToken - biometric token.
      deviceId - unique identifier of the device.
      companyId - Company Identifier.
      channel - Channel Identifier.
    • LoginBiometricRequestPsd2Dto

      public LoginBiometricRequestPsd2Dto(String documentId, String password, String deviceId, es.kukenan.smartfi.common.service.jwt.enums.EntityBankEnum companyId, es.kukenan.smartfi.common.service.jwt.enums.ChannelEnum channel)
      Dto for biometric login.
      Parameters:
      documentId - document.
      password - password.
      deviceId - unique identifier of the device.
      companyId - Company Identifier.
      channel - Channel Identifier.