
com.yodlee.api.model.provideraccounts.ProviderAccount 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.provideraccounts;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import io.swagger.annotations.ApiModelProperty;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({"id", "aggregationSource", "providerId", "consentId", "isManual", "createdDate", "requestId", "status",
"dataset", "loginForm", "isAutoRefreshPreferred", "isDataExtractsPreferred", "preferences", "oauthMigrationStatus"})
public class ProviderAccount extends AbstractProviderAccount {
@ApiModelProperty(readOnly = true,
value = "The date on when the provider account is created in the system."//
+ "
"//
+ "Endpoints:"//
+ ""//
+ "- GET providerAccounts
"//
+ "- POST providerAccounts
"//
+ "- PUT providerAccounts/{providerAccountId}
"//
+ "- GET providerAccounts/{providerAccountId}
"//
+ "
")
@JsonProperty("createdDate")
private String createdDate;
@ApiModelProperty(readOnly = true,
value = "User preference values for Auto-Refresh and DataExtracts Notification"//
+ "
"//
+ "Endpoints:"//
+ ""//
+ "- GET providerAccounts
"//
+ "- GET providerAccounts/{providerAccountId}
"//
+ "
")
@JsonProperty("preferences")
private ProviderAccountPreferences preferences;
@ApiModelProperty(name = "consentId",
required = false,
value = "Consent Id generated through POST Consent."//
+ "
"//
+ "Endpoints:"//
+ ""//
+ "- GET providerAccounts
"//
+ "- POST providerAccounts
"//
+ "- PUT providerAccounts/{providerAccountId}
"//
+ "- GET providerAccounts/{providerAccountId}
"//
+ "
")
@JsonProperty("consentId")
private Long consentId;
public Long getConsentId() {
return consentId;
}
/**
* The date on when the provider account is created in the system.
*
* Endpoints:
*
* - GET providerAccounts
* - POST providerAccounts
* - PUT providerAccounts/{providerAccountId}
* - GET providerAccounts/{providerAccountId}
*
*
* @return createdDate
*/
public String getCreatedDate() {
return createdDate;
}
/**
* User preference values for Auto-Refresh and DataExtracts Notification
*
* Endpoints:
*
* - GET providerAccounts
* - GET providerAccounts/{providerAccountId}
*
*
* @return preferences
*/
public ProviderAccountPreferences getPreferences() {
return preferences;
}
@Override
public String toString() {
return "ProviderAccount [createdDate=" + createdDate + ", consentId=" + consentId + ", preferences=" + preferences + ", oauthMigrationStatus=" + openBankingMigrationStatusType +"]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy