com.plaid.client.response.ItemMfaResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plaid-java Show documentation
Show all versions of plaid-java Show documentation
Bindings for the Plaid (plaid.com) API.
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