com.vertexvis.model.FileMetadataDataAttributes Maven / Gradle / Ivy
/*
* Vertex Platform API
* The Vertex distributed cloud rendering platform includes a set of APIs and SDKs, which together allow easily integrating 3D product data into your business application. See our [Developer Guides](https://developer.vertexvis.com/docs/guides/render-your-first-scene) to get started. Notes about the Postman collection and API Reference code samples, - They include all required and optional body parameters for completeness. Remove any optional parameters as desired. - They use auto-generated IDs and other values that may share the same value for ease of documentation only. In actual requests and responses, the IDs should uniquely identify their corresponding resource.
*
* The version of the OpenAPI document: 1.0
* 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.vertexvis.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;
import java.time.OffsetDateTime;
/**
* FileMetadataDataAttributes
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class FileMetadataDataAttributes {
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
private String status;
public static final String SERIALIZED_NAME_SUPPLIED_ID = "suppliedId";
@SerializedName(SERIALIZED_NAME_SUPPLIED_ID)
private String suppliedId;
public static final String SERIALIZED_NAME_ROOT_FILE_NAME = "rootFileName";
@SerializedName(SERIALIZED_NAME_ROOT_FILE_NAME)
private String rootFileName;
public static final String SERIALIZED_NAME_CREATED = "created";
@SerializedName(SERIALIZED_NAME_CREATED)
private OffsetDateTime created;
public static final String SERIALIZED_NAME_UPLOADED = "uploaded";
@SerializedName(SERIALIZED_NAME_UPLOADED)
private OffsetDateTime uploaded;
public static final String SERIALIZED_NAME_SIZE = "size";
@SerializedName(SERIALIZED_NAME_SIZE)
private Long size;
public FileMetadataDataAttributes name(String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "some-string", required = true, value = "")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public FileMetadataDataAttributes status(String status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "complete", required = true, value = "")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public FileMetadataDataAttributes suppliedId(String suppliedId) {
this.suppliedId = suppliedId;
return this;
}
/**
* Get suppliedId
* @return suppliedId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "some-string", value = "")
public String getSuppliedId() {
return suppliedId;
}
public void setSuppliedId(String suppliedId) {
this.suppliedId = suppliedId;
}
public FileMetadataDataAttributes rootFileName(String rootFileName) {
this.rootFileName = rootFileName;
return this;
}
/**
* Get rootFileName
* @return rootFileName
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "some-string", value = "")
public String getRootFileName() {
return rootFileName;
}
public void setRootFileName(String rootFileName) {
this.rootFileName = rootFileName;
}
public FileMetadataDataAttributes created(OffsetDateTime created) {
this.created = created;
return this;
}
/**
* Get created
* @return created
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "2020-01-01T12:00Z", required = true, value = "")
public OffsetDateTime getCreated() {
return created;
}
public void setCreated(OffsetDateTime created) {
this.created = created;
}
public FileMetadataDataAttributes uploaded(OffsetDateTime uploaded) {
this.uploaded = uploaded;
return this;
}
/**
* Get uploaded
* @return uploaded
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2020-01-01T12:00Z", value = "")
public OffsetDateTime getUploaded() {
return uploaded;
}
public void setUploaded(OffsetDateTime uploaded) {
this.uploaded = uploaded;
}
public FileMetadataDataAttributes size(Long size) {
this.size = size;
return this;
}
/**
* Get size
* @return size
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Long getSize() {
return size;
}
public void setSize(Long size) {
this.size = size;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FileMetadataDataAttributes fileMetadataDataAttributes = (FileMetadataDataAttributes) o;
return Objects.equals(this.name, fileMetadataDataAttributes.name) &&
Objects.equals(this.status, fileMetadataDataAttributes.status) &&
Objects.equals(this.suppliedId, fileMetadataDataAttributes.suppliedId) &&
Objects.equals(this.rootFileName, fileMetadataDataAttributes.rootFileName) &&
Objects.equals(this.created, fileMetadataDataAttributes.created) &&
Objects.equals(this.uploaded, fileMetadataDataAttributes.uploaded) &&
Objects.equals(this.size, fileMetadataDataAttributes.size);
}
@Override
public int hashCode() {
return Objects.hash(name, status, suppliedId, rootFileName, created, uploaded, size);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class FileMetadataDataAttributes {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" suppliedId: ").append(toIndentedString(suppliedId)).append("\n");
sb.append(" rootFileName: ").append(toIndentedString(rootFileName)).append("\n");
sb.append(" created: ").append(toIndentedString(created)).append("\n");
sb.append(" uploaded: ").append(toIndentedString(uploaded)).append("\n");
sb.append(" size: ").append(toIndentedString(size)).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 ");
}
}