![JAR search and dependency download from the Maven repository](/logo.png)
com.tinypass.client.publisher.model.DeploymentContentFields 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 DeploymentContentFields {
/* The content field name */
private String name = null;
/* The content field value */
private String value = null;
/* The content field description */
private String description = null;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DeploymentContentFields {\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" value: ").append(value).append("\n");
sb.append(" description: ").append(description).append("\n");
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy