/** * 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 { PasskeyTransport } from './PasskeyTransport'; /** * * @export * @interface PasskeyRegistrationCredentialV2 */ export interface PasskeyRegistrationCredentialV2 { /** * * @type {string} * @memberof PasskeyRegistrationCredentialV2 */ attestationObject: string; /** * * @type {string} * @memberof PasskeyRegistrationCredentialV2 */ clientDataJson: string; /** * List of transport methods supported by this registration credential * @type {Array} * @memberof PasskeyRegistrationCredentialV2 */ transports?: Array; /** * * @type {string} * @memberof PasskeyRegistrationCredentialV2 */ publicKey?: string; } export declare function PasskeyRegistrationCredentialV2FromJSON(json: any): PasskeyRegistrationCredentialV2; export declare function PasskeyRegistrationCredentialV2FromJSONTyped(json: any, ignoreDiscriminator: boolean): PasskeyRegistrationCredentialV2; export declare function PasskeyRegistrationCredentialV2ToJSON(value?: PasskeyRegistrationCredentialV2 | null): any;