All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fusionauth.domain.api.WebAuthnStartResponse Maven / Gradle / Ivy

There is a newer version: 1.53.0
Show newest version
/*
 * Copyright (c) 2022, FusionAuth, All Rights Reserved
 */
package io.fusionauth.domain.api;

import com.inversoft.json.JacksonConstructor;
import io.fusionauth.domain.webauthn.PublicKeyCredentialRequestOptions;

/**
 * API response for starting a WebAuthn authentication ceremony
 *
 * @author Spencer Witt
 */
public class WebAuthnStartResponse {
  public PublicKeyCredentialRequestOptions options;

  @JacksonConstructor
  public WebAuthnStartResponse() {
  }

  public WebAuthnStartResponse(PublicKeyCredentialRequestOptions options) {
    this.options = options;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy