Layer 220
constructor
inputPasskeyResponseLogin#c31fc14a client_data:DataJSON authenticator_data:bytes signature:bytes user_handle:string = InputPasskeyResponse;

Parameters

Name Type Description
ClientData DataJSON
AuthenticatorData bytes
Signature bytes
UserHandle string

Gogram Example

// Creating InputPasskeyResponseLogin constructor
obj := &tg.InputPasskeyResponseLogin{
    ClientData: &tg.DataJson{},
    AuthenticatorData: []byte{},
    Signature: []byte{},
    UserHandle: "...",
}