io.fusionauth.domain.api.WebAuthnStartResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
/*
* 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;
}
}