Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.47 KB

File metadata and controls

40 lines (33 loc) · 1.47 KB

ExternalKmsAuthenticatorData

Properties

Name Type Description Notes
algorithm Algorithm [default to undefined]
publicKey Array<number> [default to undefined]
authenticatorKind string [default to undefined]
attestationObject string The attestation object, as binary. [default to undefined]
clientDataJSON string The client data JSON, as binary. [default to undefined]
credentialId string [default to undefined]
transports Array<string> The transports used by the authenticator. [optional] [default to undefined]
jwkSet object [default to undefined]
jwksUrl string [default to undefined]
issuerUrl string [default to undefined]
idTokenClaims IdTokenVerificationClaims [default to undefined]

Example

import { ExternalKmsAuthenticatorData } from '@phantom/openapi-wallet-service';

const instance: ExternalKmsAuthenticatorData = {
    algorithm,
    publicKey,
    authenticatorKind,
    attestationObject,
    clientDataJSON,
    credentialId,
    transports,
    jwkSet,
    jwksUrl,
    issuerUrl,
    idTokenClaims,
};

[Back to Model list] [Back to API list] [Back to README]