/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AuthenticatorTransportProtocol } from './AuthenticatorTransportProtocol'; /** * * @export * @interface PasskeyRegistrationCredential */ export interface PasskeyRegistrationCredential { /** * * @type {string} * @memberof PasskeyRegistrationCredential */ attestationObject: string; /** * * @type {string} * @memberof PasskeyRegistrationCredential */ clientDataJson: string; /** * * @type {string} * @memberof PasskeyRegistrationCredential */ credentialId: string; /** * List of transport methods supported by this registration credential * @type {Array} * @memberof PasskeyRegistrationCredential */ transports: Array; /** * * @type {string} * @memberof PasskeyRegistrationCredential */ publicKey?: string; } export declare function PasskeyRegistrationCredentialFromJSON(json: any): PasskeyRegistrationCredential; export declare function PasskeyRegistrationCredentialFromJSONTyped(json: any, ignoreDiscriminator: boolean): PasskeyRegistrationCredential; export declare function PasskeyRegistrationCredentialToJSON(value?: PasskeyRegistrationCredential | null): any;