toggle menu
QuettaCode API
0.1.0-BETA
jvm
switch theme
search in API
QuettaCode API
/
com.quettacode.core.auth.web.dto
/
CompleteRegistrationRequest
Complete
Registration
Request
data
class
CompleteRegistrationRequest
(
val
inviteToken
:
String
,
val
username
:
String
,
val
cpf
:
String
,
val
password
:
String
)
(
source
)
Members
Constructors
Complete
Registration
Request
Link copied to clipboard
constructor
(
inviteToken
:
String
,
username
:
String
,
cpf
:
String
,
password
:
String
)
Properties
cpf
Link copied to clipboard
@
NotBlank
@
CPF
(
message
=
"CPF inválido"
)
val
cpf
:
String
invite
Token
Link copied to clipboard
@
NotBlank
val
inviteToken
:
String
password
Link copied to clipboard
@
NotBlank
@
Size
(
min
=
8
,
message
=
"A senha deve ter no mínimo 8 caracteres"
)
val
password
:
String
username
Link copied to clipboard
@
NotBlank
@
Size
(
min
=
3
,
max
=
50
)
val
username
:
String