![JAR search and dependency download from the Maven repository](/logo.png)
com.finbourne.luminesce.model.AccessControlledResourceIdentifierPartSchemaAttribute Maven / Gradle / Ivy
/*
* FINBOURNE Luminesce Web API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.13.202
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.finbourne.luminesce.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* AccessControlledResourceIdentifierPartSchemaAttribute
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class AccessControlledResourceIdentifierPartSchemaAttribute {
public static final String SERIALIZED_NAME_INDEX = "index";
@SerializedName(SERIALIZED_NAME_INDEX)
private Integer index;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_DISPLAY_NAME = "displayName";
@SerializedName(SERIALIZED_NAME_DISPLAY_NAME)
private String displayName;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_REQUIRED = "required";
@SerializedName(SERIALIZED_NAME_REQUIRED)
private Boolean required;
public static final String SERIALIZED_NAME_VALUES_PATH = "valuesPath";
@SerializedName(SERIALIZED_NAME_VALUES_PATH)
private String valuesPath;
public static final String SERIALIZED_NAME_TYPE_ID = "typeId";
@SerializedName(SERIALIZED_NAME_TYPE_ID)
private Object typeId = null;
public AccessControlledResourceIdentifierPartSchemaAttribute index(Integer index) {
this.index = index;
return this;
}
/**
* Get index
* @return index
**/
@ApiModelProperty(value = "")
public Integer getIndex() {
return index;
}
public void setIndex(Integer index) {
this.index = index;
}
public AccessControlledResourceIdentifierPartSchemaAttribute name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@ApiModelProperty(value = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public AccessControlledResourceIdentifierPartSchemaAttribute displayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* Get displayName
* @return displayName
**/
@ApiModelProperty(value = "")
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public AccessControlledResourceIdentifierPartSchemaAttribute description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
**/
@ApiModelProperty(value = "")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public AccessControlledResourceIdentifierPartSchemaAttribute required(Boolean required) {
this.required = required;
return this;
}
/**
* Get required
* @return required
**/
@ApiModelProperty(value = "")
public Boolean getRequired() {
return required;
}
public void setRequired(Boolean required) {
this.required = required;
}
public AccessControlledResourceIdentifierPartSchemaAttribute valuesPath(String valuesPath) {
this.valuesPath = valuesPath;
return this;
}
/**
* Get valuesPath
* @return valuesPath
**/
@ApiModelProperty(value = "")
public String getValuesPath() {
return valuesPath;
}
public void setValuesPath(String valuesPath) {
this.valuesPath = valuesPath;
}
/**
* Get typeId
* @return typeId
**/
@ApiModelProperty(value = "")
public Object getTypeId() {
return typeId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
return true;
}
@Override
public int hashCode() {
return super.hashCode();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AccessControlledResourceIdentifierPartSchemaAttribute {\n");
sb.append(" index: ").append(toIndentedString(index)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" displayName: ").append(toIndentedString(displayName)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" required: ").append(toIndentedString(required)).append("\n");
sb.append(" valuesPath: ").append(toIndentedString(valuesPath)).append("\n");
sb.append(" typeId: ").append(toIndentedString(typeId)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy