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

io.fusionauth.domain.api.TwoFactorResponse Maven / Gradle / Ivy

There is a newer version: 1.53.0
Show newest version
/*
 * Copyright (c) 2018-2022, FusionAuth, All Rights Reserved
 */
package io.fusionauth.domain.api;

import java.util.List;

import com.inversoft.json.JacksonConstructor;
import io.fusionauth.domain.Buildable;

/**
 * @author Daniel DeGroff
 */
public class TwoFactorResponse implements Buildable {
  public String code;

  public List recoveryCodes;

  @JacksonConstructor
  public TwoFactorResponse() {
  }

  public TwoFactorResponse(List recoveryCodes) {
    this.recoveryCodes = recoveryCodes;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy