com.yodlee.api.model.consent.enums.DatasetAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yodlee-api-model-beta Show documentation
Show all versions of yodlee-api-model-beta Show documentation
Yodlee API Model Beta is the stage version
/**
* 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.consent.enums;
public enum DatasetAttribute {
/**
* Indicates account profile, full account number.
*/
ACCT_PROFILE_FULL_ACCT_NUMBER("ACCT_PROFILE.FULL_ACCT_NUMBER"),//
/**
* Indicates account profile, bank transfer code.
*/
ACCT_PROFILE_BANK_TRANSFER_CODE("ACCT_PROFILE.BANK_TRANSFER_CODE"),//
/**
* Indicates account profile, holder name.
*/
ACCT_PROFILE_HOLDER_NAME("ACCT_PROFILE.HOLDER_NAME"),//
/**
* Indicates account profile, holder details.
*/
ACCT_PROFILE_HOLDER_DETAILS("ACCT_PROFILE.HOLDER_DETAILS"),//
/**
* Indicates basic aggregation data, account details .
*/
BASIC_AGG_DATA_ACCOUNT_DETAILS("BASIC_AGG_DATA.ACCOUNT_DETAILS"),//
/**
* Indicates basic aggregation data, statements.
*/
BASIC_AGG_DATA_STATEMENTS("BASIC_AGG_DATA.STATEMENTS"),//
/**
* Indicates basic aggregation data, transactions.
*/
BASIC_AGG_DATA_TRANSACTIONS("BASIC_AGG_DATA.TRANSACTIONS"),//
/**
* Indicates basic aggregation data, basic account info.
*/
BASIC_AGG_DATA_BASIC_ACCOUNT_INFO("BASIC_AGG_DATA.BASIC_ACCOUNT_INFO");//
public final String label;
private DatasetAttribute(String label) {
this.label = label;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy