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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy