Layer 227
constructor
inputPasskeyCredentialPublicKey#3c27b78f id:string raw_id:string response:InputPasskeyResponse = InputPasskeyCredential;

Parameters

Name Type Description
Id string id field of a Public Key Credential, passed as-is without base 64 url-decoding when using the JSON representation
RawId string raw Id field of a Public Key Credential, passed as-is without base 64 url-decoding when using the JSON representation
Response InputPasskeyResponse Registration or login response.

Gogram Example

// Creating InputPasskeyCredentialPublicKey constructor
obj := &tg.InputPasskeyCredentialPublicKey{
    Id: "Hello, World!",
    RawId: "Hello, World!",
    Response: &tg.InputPasskeyResponse{},
}