io.fusionauth.domain.api.WebAuthnCredentialResponse 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 java.util.List;
import com.inversoft.json.JacksonConstructor;
import io.fusionauth.domain.WebAuthnCredential;
/**
* WebAuthn Credential API response
*
* @author Spencer Witt
*/
public class WebAuthnCredentialResponse {
public WebAuthnCredential credential;
public List credentials;
@JacksonConstructor
public WebAuthnCredentialResponse() {
}
public WebAuthnCredentialResponse(WebAuthnCredential credential) {
this.credential = credential;
}
public WebAuthnCredentialResponse(List credentials) {
this.credentials = credentials;
}
}