com.yodlee.api.model.verifyaccount.VerifyAccount Maven / Gradle / Ivy
/**
* Copyright (c) 2019 Yodlee, Inc. All Rights Reserved.
*
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*/
package com.yodlee.api.model.verifyaccount;
import java.util.Collections;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.yodlee.api.model.AbstractModelComponent;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class VerifyAccount extends AbstractModelComponent {
@JsonProperty("account")
private List account;
@JsonProperty("transactionCriteria")
private List transactionCriteria;
public List getAccount() {
return account == null ? null : Collections.unmodifiableList(account);
}
public List getTransactionCriteria() {
return transactionCriteria == null ? null : Collections.unmodifiableList(transactionCriteria);
}
@Override
public String toString() {
return "VerifyAccount [account=" + account + ", transactionCriteria=" + transactionCriteria + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy