org.finra.herd.sdk.model.ScriptDefinition Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
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;
import java.util.ArrayList;
import java.util.List;
/**
* ScriptDefinition
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class ScriptDefinition {
@JsonProperty("scriptName")
private String scriptName = null;
@JsonProperty("scriptLocation")
private String scriptLocation = null;
@JsonProperty("scriptArguments")
private List scriptArguments = null;
public ScriptDefinition scriptName(String scriptName) {
this.scriptName = scriptName;
return this;
}
/**
* Get scriptName
* @return scriptName
**/
@ApiModelProperty(required = true, value = "")
public String getScriptName() {
return scriptName;
}
public void setScriptName(String scriptName) {
this.scriptName = scriptName;
}
public ScriptDefinition scriptLocation(String scriptLocation) {
this.scriptLocation = scriptLocation;
return this;
}
/**
* Get scriptLocation
* @return scriptLocation
**/
@ApiModelProperty(required = true, value = "")
public String getScriptLocation() {
return scriptLocation;
}
public void setScriptLocation(String scriptLocation) {
this.scriptLocation = scriptLocation;
}
public ScriptDefinition scriptArguments(List scriptArguments) {
this.scriptArguments = scriptArguments;
return this;
}
public ScriptDefinition addScriptArgumentsItem(String scriptArgumentsItem) {
if (this.scriptArguments == null) {
this.scriptArguments = new ArrayList();
}
this.scriptArguments.add(scriptArgumentsItem);
return this;
}
/**
* Get scriptArguments
* @return scriptArguments
**/
@ApiModelProperty(value = "")
public List getScriptArguments() {
return scriptArguments;
}
public void setScriptArguments(List scriptArguments) {
this.scriptArguments = scriptArguments;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ScriptDefinition scriptDefinition = (ScriptDefinition) o;
return Objects.equals(this.scriptName, scriptDefinition.scriptName) &&
Objects.equals(this.scriptLocation, scriptDefinition.scriptLocation) &&
Objects.equals(this.scriptArguments, scriptDefinition.scriptArguments);
}
@Override
public int hashCode() {
return Objects.hash(scriptName, scriptLocation, scriptArguments);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ScriptDefinition {\n");
sb.append(" scriptName: ").append(toIndentedString(scriptName)).append("\n");
sb.append(" scriptLocation: ").append(toIndentedString(scriptLocation)).append("\n");
sb.append(" scriptArguments: ").append(toIndentedString(scriptArguments)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}