io.fusionauth.domain.api.WebAuthnLoginRequest 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.fasterxml.jackson.annotation.JsonProperty;
import io.fusionauth.domain.Buildable;
/**
* Request to complete the WebAuthn registration ceremony
*
* @author Spencer Witt
*/
public class WebAuthnLoginRequest extends BaseLoginRequest implements Buildable {
/**
* Details on the challenge signing
*/
public WebAuthnPublicKeyAuthenticationRequest credential;
/**
* The request origin
*/
public String origin;
/**
* The Relying Party Id
*/
@JsonProperty("rpId")
public String relyingPartyId;
public String twoFactorTrustId;
}