com.anaptecs.jeaf.openapi.Reseller Maven / Gradle / Ivy
/*
* Product Base Definitions
* This component represents the Open API interface of the accounting service.
*
* OpenAPI spec version: 0.0.1
* 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 com.anaptecs.jeaf.openapi;
import java.util.Objects;
import java.util.Arrays;
import com.anaptecs.jeaf.openapi.Channel;
import com.anaptecs.jeaf.openapi.Product;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
* Reseller
*/
public class Reseller {
@JsonProperty("channels")
private List channels = null;
@JsonProperty("products")
private List products = null;
@JsonProperty("language")
private String language = null;
public Reseller channels(List channels) {
this.channels = channels;
return this;
}
public Reseller addChannelsItem(Channel channelsItem) {
if (this.channels == null) {
this.channels = new ArrayList<>();
}
this.channels.add(channelsItem);
return this;
}
/**
* Get channels
* @return channels
**/
@Schema(description = "")
public List getChannels() {
return channels;
}
public void setChannels(List channels) {
this.channels = channels;
}
public Reseller products(List products) {
this.products = products;
return this;
}
public Reseller addProductsItem(Product productsItem) {
if (this.products == null) {
this.products = new ArrayList<>();
}
this.products.add(productsItem);
return this;
}
/**
* Get products
* @return products
**/
@Schema(description = "")
public List getProducts() {
return products;
}
public void setProducts(List products) {
this.products = products;
}
public Reseller language(String language) {
this.language = language;
return this;
}
/**
* Get language
* @return language
**/
@Schema(description = "")
public String getLanguage() {
return language;
}
public void setLanguage(String language) {
this.language = language;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Reseller reseller = (Reseller) o;
return Objects.equals(this.channels, reseller.channels) &&
Objects.equals(this.products, reseller.products) &&
Objects.equals(this.language, reseller.language);
}
@Override
public int hashCode() {
return Objects.hash(channels, products, language);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Reseller {\n");
sb.append(" channels: ").append(toIndentedString(channels)).append("\n");
sb.append(" products: ").append(toIndentedString(products)).append("\n");
sb.append(" language: ").append(toIndentedString(language)).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