
com.autodesk.client.model.FormatsFormats Maven / Gradle / Ivy
/*
* Forge SDK
* The Forge Platform contains an expanding collection of web service components that can be used with Autodesk cloud-based products or your own technologies. Take advantage of Autodesk’s expertise in design and engineering.
*
* OpenAPI spec version: 0.1.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.autodesk.client.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
/**
* FormatsFormats
*/
public class FormatsFormats {
@JsonProperty("svf")
private List svf = new ArrayList();
@JsonProperty("thumbnail")
private List thumbnail = new ArrayList();
@JsonProperty("stl")
private List stl = new ArrayList();
@JsonProperty("step")
private List step = new ArrayList();
@JsonProperty("iges")
private List iges = new ArrayList();
@JsonProperty("obj")
private List obj = new ArrayList();
public FormatsFormats svf(List svf) {
this.svf = svf;
return this;
}
/**
* Get svf
* @return svf
**/
@ApiModelProperty(example = "null", value = "")
public List getSvf() {
return svf;
}
public void setSvf(List svf) {
this.svf = svf;
}
public FormatsFormats thumbnail(List thumbnail) {
this.thumbnail = thumbnail;
return this;
}
/**
* Get thumbnail
* @return thumbnail
**/
@ApiModelProperty(example = "null", value = "")
public List getThumbnail() {
return thumbnail;
}
public void setThumbnail(List thumbnail) {
this.thumbnail = thumbnail;
}
public FormatsFormats stl(List stl) {
this.stl = stl;
return this;
}
/**
* Get stl
* @return stl
**/
@ApiModelProperty(example = "null", value = "")
public List getStl() {
return stl;
}
public void setStl(List stl) {
this.stl = stl;
}
public FormatsFormats step(List step) {
this.step = step;
return this;
}
/**
* Get step
* @return step
**/
@ApiModelProperty(example = "null", value = "")
public List getStep() {
return step;
}
public void setStep(List step) {
this.step = step;
}
public FormatsFormats iges(List iges) {
this.iges = iges;
return this;
}
/**
* Get iges
* @return iges
**/
@ApiModelProperty(example = "null", value = "")
public List getIges() {
return iges;
}
public void setIges(List iges) {
this.iges = iges;
}
public FormatsFormats obj(List obj) {
this.obj = obj;
return this;
}
/**
* Get obj
* @return obj
**/
@ApiModelProperty(example = "null", value = "")
public List getObj() {
return obj;
}
public void setObj(List obj) {
this.obj = obj;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FormatsFormats formatsFormats = (FormatsFormats) o;
return Objects.equals(this.svf, formatsFormats.svf) &&
Objects.equals(this.thumbnail, formatsFormats.thumbnail) &&
Objects.equals(this.stl, formatsFormats.stl) &&
Objects.equals(this.step, formatsFormats.step) &&
Objects.equals(this.iges, formatsFormats.iges) &&
Objects.equals(this.obj, formatsFormats.obj);
}
@Override
public int hashCode() {
return Objects.hash(svf, thumbnail, stl, step, iges, obj);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class FormatsFormats {\n");
sb.append(" svf: ").append(toIndentedString(svf)).append("\n");
sb.append(" thumbnail: ").append(toIndentedString(thumbnail)).append("\n");
sb.append(" stl: ").append(toIndentedString(stl)).append("\n");
sb.append(" step: ").append(toIndentedString(step)).append("\n");
sb.append(" iges: ").append(toIndentedString(iges)).append("\n");
sb.append(" obj: ").append(toIndentedString(obj)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy