com.seeq.model.AssetBatchInputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 60.1.3-v202304250417
*
*
* 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.
*/
package com.seeq.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 com.seeq.model.PutAssetInputV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
* AssetBatchInputV1
*/
public class AssetBatchInputV1 {
@JsonProperty("assets")
private List assets = new ArrayList();
@JsonProperty("hostId")
private String hostId = null;
public AssetBatchInputV1 assets(List assets) {
this.assets = assets;
return this;
}
public AssetBatchInputV1 addAssetsItem(PutAssetInputV1 assetsItem) {
this.assets.add(assetsItem);
return this;
}
/**
* A list of assets to create or update
* @return assets
**/
@Schema(required = true, description = "A list of assets to create or update")
public List getAssets() {
return assets;
}
public void setAssets(List assets) {
this.assets = assets;
}
public AssetBatchInputV1 hostId(String hostId) {
this.hostId = hostId;
return this;
}
/**
* This property is deprecated and will be removed in a future release and is currently ignored. Assign the hostId to each asset instead
* @return hostId
**/
@Schema(description = "This property is deprecated and will be removed in a future release and is currently ignored. Assign the hostId to each asset instead")
public String getHostId() {
return hostId;
}
public void setHostId(String hostId) {
this.hostId = hostId;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AssetBatchInputV1 assetBatchInputV1 = (AssetBatchInputV1) o;
return Objects.equals(this.assets, assetBatchInputV1.assets) &&
Objects.equals(this.hostId, assetBatchInputV1.hostId);
}
@Override
public int hashCode() {
return Objects.hash(assets, hostId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AssetBatchInputV1 {\n");
sb.append(" assets: ").append(toIndentedString(assets)).append("\n");
sb.append(" hostId: ").append(toIndentedString(hostId)).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 ");
}
}