/client/src/main/java/io/swagger/client/model/ResourcesUser.java
https://bitbucket.org/kilaka/eventlogger · Java · 136 lines · 88 code · 22 blank · 26 comment · 12 complexity · fb47a14690bbd7d570784948e98b7c76 MD5 · raw file
- /*
- * Api Documentation
- * Api Documentation
- *
- * OpenAPI spec version: 1.0
- *
- *
- * 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 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 io.swagger.client.model.Link;
- import io.swagger.client.model.User;
- import java.io.IOException;
- import java.util.ArrayList;
- import java.util.List;
- /**
- * ResourcesUser
- */
- @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-10T12:59:05.805+02:00")
- public class ResourcesUser {
- @SerializedName("content")
- private List<User> content = null;
- @SerializedName("links")
- private List<Link> links = null;
- public ResourcesUser content(List<User> content) {
- this.content = content;
- return this;
- }
- public ResourcesUser addContentItem(User contentItem) {
- if (this.content == null) {
- this.content = new ArrayList<User>();
- }
- this.content.add(contentItem);
- return this;
- }
- /**
- * Get content
- * @return content
- **/
- @ApiModelProperty(value = "")
- public List<User> getContent() {
- return content;
- }
- public void setContent(List<User> content) {
- this.content = content;
- }
- public ResourcesUser links(List<Link> links) {
- this.links = links;
- return this;
- }
- public ResourcesUser addLinksItem(Link linksItem) {
- if (this.links == null) {
- this.links = new ArrayList<Link>();
- }
- this.links.add(linksItem);
- return this;
- }
- /**
- * Get links
- * @return links
- **/
- @ApiModelProperty(value = "")
- public List<Link> getLinks() {
- return links;
- }
- public void setLinks(List<Link> links) {
- this.links = links;
- }
- @Override
- public boolean equals(java.lang.Object o) {
- if (this == o) {
- return true;
- }
- if (o == null || getClass() != o.getClass()) {
- return false;
- }
- ResourcesUser resourcesUser = (ResourcesUser) o;
- return Objects.equals(this.content, resourcesUser.content) &&
- Objects.equals(this.links, resourcesUser.links);
- }
- @Override
- public int hashCode() {
- return Objects.hash(content, links);
- }
- @Override
- public String toString() {
- StringBuilder sb = new StringBuilder();
- sb.append("class ResourcesUser {\n");
-
- sb.append(" content: ").append(toIndentedString(content)).append("\n");
- sb.append(" links: ").append(toIndentedString(links)).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 ");
- }
- }