com.yodlee.api.model.consent.enums.ConsentStatus 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 ConsentStatus {
/**
* The consent is Active when the user adds/edits an account with a
* generated consent ID.
*/
ACTIVE,//
/**
* Consent generated from input dataset or implicit dataset.
*/
CONSENT_GENERATED,//
/**
* Consent is accepted by user by selecting from list of consent attributes.
*/
CONSENT_ACCEPTED,//
/**
* Consent is authorized when user adds/updates an account with generated consent id.
*/
CONSENT_AUTHORIZED,//
/**
* When user provides not accepted consent id or already authorized consent for add/update account.
*/
CONSENT_MISMATCH,//
/**
* The consent is PENDING when it is yet to be authorized by the user
* with the generated consent ID.
*/
PENDING,//
/**
* The consent is expired when it runs out of its expiry period.
*/
EXPIRED,//
/**
* The consent is revoked when the user explicitly revokes it.
*/
REVOKED
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy