io.swagger.client.model.LoadClientsRequest Maven / Gradle / Ivy
/*
* Commspace source data API
* API for Commspace source data management
*
* OpenAPI spec version: 1.0.4
* 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.
*/
package io.swagger.client.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.client.model.Client;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
* LoadClientsRequest
*/
@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2021-03-31T12:15:05.519Z[GMT]")
public class LoadClientsRequest {
@JsonProperty("clients")
private List clients = null;
public LoadClientsRequest clients(List clients) {
this.clients = clients;
return this;
}
public LoadClientsRequest addClientsItem(Client clientsItem) {
if (this.clients == null) {
this.clients = new ArrayList<>();
}
this.clients.add(clientsItem);
return this;
}
/**
* Get clients
* @return clients
**/
@Schema(description = "")
public List getClients() {
return clients;
}
public void setClients(List clients) {
this.clients = clients;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LoadClientsRequest loadClientsRequest = (LoadClientsRequest) o;
return Objects.equals(this.clients, loadClientsRequest.clients);
}
@Override
public int hashCode() {
return Objects.hash(clients);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LoadClientsRequest {\n");
sb.append(" clients: ").append(toIndentedString(clients)).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