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

com.plaid.client.response.ItemMfaResponse Maven / Gradle / Ivy

There is a newer version: 29.0.0
Show newest version
package com.plaid.client.response;

import com.plaid.client.request.common.MfaType;

import java.util.Collections;
import java.util.List;

public final class ItemMfaResponse extends BaseResponse {
  // mfa response fields
  private Device device;
  private List deviceList;
  private MfaType mfaType;
  private List questions;
  private List selections;
  // normal response fields
  private ItemStatus item;

  public final static class Device {
	    private String displayMessage;

	    public String getDisplayMessage() {
	      return displayMessage;
	    }
  } 
  
  public Device getDevice() {
    return device;
  }

  public List getDeviceList() {
    return deviceList;
  }

  public MfaType getMfaType() {
    return mfaType;
  }

  public List getQuestions() {
    return questions;
  }

  public List getSelections() {
    return selections;
  }

  public ItemStatus getItem() {
    return item;
  }

  public boolean isItemResponse() {
    return item != null;
  }

  public boolean isMfaResponse() {
    return mfaType != null;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy