![JAR search and dependency download from the Maven repository](/logo.png)
com.tinypass.client.publisher.model.TemplateVariable Maven / Gradle / Ivy
package com.tinypass.client.publisher.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
public class TemplateVariable {
/* The template variable ID */
private String templateVariableId = null;
/* The template variable name */
private String name = null;
/* The template variable description */
private String description = null;
/* The template variable test value */
private String testValue = null;
/* The template variable parent ID */
private String parentId = null;
public String getTemplateVariableId() {
return templateVariableId;
}
public void setTemplateVariableId(String templateVariableId) {
this.templateVariableId = templateVariableId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getTestValue() {
return testValue;
}
public void setTestValue(String testValue) {
this.testValue = testValue;
}
public String getParentId() {
return parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TemplateVariable {\n");
sb.append(" templateVariableId: ").append(templateVariableId).append("\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" description: ").append(description).append("\n");
sb.append(" testValue: ").append(testValue).append("\n");
sb.append(" parentId: ").append(parentId).append("\n");
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy