RegisterRequest
data class RegisterRequest(account: String, voice: Boolean?, captcha: String?, server: String?) : SignaldRequestBodyV1<Account>
Content copied to clipboard
begin the account registration process by requesting a phone number verification code. when the code is received, submit it with a verify request
Constructors
Link copied to clipboard
fun RegisterRequest(account: String, voice: Boolean? = null, captcha: String? = null, server: String? = null)
Content copied to clipboard
Functions
Link copied to clipboard
open override fun submit(socketCommunicator: SocketCommunicator, id: String): Account
Content copied to clipboard
Link copied to clipboard
suspend fun submitSuspend(socketCommunicator: SuspendSocketCommunicator): Account
Content copied to clipboard
open suspend override fun submitSuspend(socketCommunicator: SuspendSocketCommunicator, id: String): Account
Content copied to clipboard