com.yodlee.api.model.Option 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.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import io.swagger.annotations.ApiModelProperty;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({"displayText", "isSelected", "optionValue"})
public class Option extends AbstractModelComponent {
@ApiModelProperty(value = "The text that is displayed to the user for that option in the provider site."//
+ "
"//
+ "Endpoints:"//
+ ""//
+ "- GET providerAccounts/{providerAccountId}
"//
+ "- GET providers/{providerId}
"//
+ "
")
@JsonProperty("displayText")
private String displayText;
@ApiModelProperty(value = "The option that is selected by default in the provider site."//
+ "
"//
+ "Endpoints:"//
+ ""//
+ "- GET providerAccounts/{providerAccountId}
"//
+ "- GET providers/{providerId}
"//
+ "
")
@JsonProperty("isSelected")
private Boolean isSelected;
@ApiModelProperty(value = "The value that is associated with the option."//
+ "
"//
+ "Endpoints:"//
+ ""//
+ "- GET providerAccounts/{providerAccountId}
"//
+ "- GET providers/{providerId}
"//
+ "
")
@JsonProperty("optionValue")
private String optionValue;
/**
* The text that is displayed to the user for that option in the provider site.
*
* Endpoints:
*
* - GET providerAccounts/{providerAccountId}
* - GET providers/{providerId}
*
*
* @return displayText
*/
public String getDisplayText() {
return displayText;
}
public void setDisplayText(String displayText) {
this.displayText = displayText;
}
/**
* The option that is selected by default in the provider site.
*
* Endpoints:
*
* - GET providerAccounts/{providerAccountId}
* - GET providers/{providerId}
*
*
* @return isSelected
*/
public Boolean getIsSelected() {
return isSelected;
}
public void setIsSelected(Boolean isSelected) {
this.isSelected = isSelected;
}
/**
* The value that is associated with the option.
*
* Endpoints:
*
* - GET providerAccounts/{providerAccountId}
* - GET providers/{providerId}
*
*
* @return optionValue
*/
public String getOptionValue() {
return optionValue;
}
public void setOptionValue(String optionValue) {
this.optionValue = optionValue;
}
@Override
public String toString() {
return "Option [displayText=" + displayText + ", isSelected=" + isSelected + ", optionValue=" + optionValue
+ "]";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy