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

io.fusionauth.domain.api.WebAuthnCredentialResponse 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 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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy