All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yodlee.api.model.RenewalConsent Maven / Gradle / Ivy

There is a newer version: 1.0.29.beta1
Show newest 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