
com.yodlee.api.model.RenewalConsent 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;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModelProperty;
public class RenewalConsent extends AbstractModelComponent{
@ApiModelProperty(value = "Consent default renewal duration."//
+ "
"//
+ "Endpoints:"//
+ ""//
+ "- PUT consents/{consentId}/renewal
"//
+ "
")
@JsonProperty("defaultRenewalDuration")
private String defaultRenewalDuration;
@ApiModelProperty(value = "Consent eligibility for reauthorization."//
+ "
"//
+ "Endpoints:"//
+ ""//
+ "- PUT consents/{consentId}/renewal
"//
+ "
")
@JsonProperty("isReauthorizationRequired")
private Boolean isReauthorizationRequired;
/**
* Consent default renewal duration.
*
* Endpoints:
*
* - PUT consents/{consentId}/renewal
*
*
* @return defaultRenewalDuration
*/
public String getDefaultRenewalDuration() {
return defaultRenewalDuration;
}
public void setDefaultRenewalDuration(String defaultRenewalDuration) {
this.defaultRenewalDuration = defaultRenewalDuration;
}
/**
* Consent eligibility for reauthorization.
*
* Endpoints:
*
* - PUT consents/{consentId}/renewal
*
*
* @return isReauthorizationRequired
*/
public Boolean getIsReauthorizationRequired() {
return isReauthorizationRequired;
}
public void setIsReauthorizationRequired(Boolean isReauthorizationRequired) {
this.isReauthorizationRequired = isReauthorizationRequired;
}
@Override
public String toString() {
return "RenewalConsent [defaultRenewalDuration=" + defaultRenewalDuration + ", isReauthorizationRequired="
+ isReauthorizationRequired + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy