/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

  1. /*
  2. * Api Documentation
  3. * Api Documentation
  4. *
  5. * OpenAPI spec version: 1.0
  6. *
  7. *
  8. * NOTE: This class is auto generated by the swagger code generator program.
  9. * https://github.com/swagger-api/swagger-codegen.git
  10. * Do not edit the class manually.
  11. */
  12. package io.swagger.client.model;
  13. import java.util.Objects;
  14. import com.google.gson.TypeAdapter;
  15. import com.google.gson.annotations.JsonAdapter;
  16. import com.google.gson.annotations.SerializedName;
  17. import com.google.gson.stream.JsonReader;
  18. import com.google.gson.stream.JsonWriter;
  19. import io.swagger.annotations.ApiModel;
  20. import io.swagger.annotations.ApiModelProperty;
  21. import io.swagger.client.model.Link;
  22. import io.swagger.client.model.User;
  23. import java.io.IOException;
  24. import java.util.ArrayList;
  25. import java.util.List;
  26. /**
  27. * ResourcesUser
  28. */
  29. @javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-10T12:59:05.805+02:00")
  30. public class ResourcesUser {
  31. @SerializedName("content")
  32. private List<User> content = null;
  33. @SerializedName("links")
  34. private List<Link> links = null;
  35. public ResourcesUser content(List<User> content) {
  36. this.content = content;
  37. return this;
  38. }
  39. public ResourcesUser addContentItem(User contentItem) {
  40. if (this.content == null) {
  41. this.content = new ArrayList<User>();
  42. }
  43. this.content.add(contentItem);
  44. return this;
  45. }
  46. /**
  47. * Get content
  48. * @return content
  49. **/
  50. @ApiModelProperty(value = "")
  51. public List<User> getContent() {
  52. return content;
  53. }
  54. public void setContent(List<User> content) {
  55. this.content = content;
  56. }
  57. public ResourcesUser links(List<Link> links) {
  58. this.links = links;
  59. return this;
  60. }
  61. public ResourcesUser addLinksItem(Link linksItem) {
  62. if (this.links == null) {
  63. this.links = new ArrayList<Link>();
  64. }
  65. this.links.add(linksItem);
  66. return this;
  67. }
  68. /**
  69. * Get links
  70. * @return links
  71. **/
  72. @ApiModelProperty(value = "")
  73. public List<Link> getLinks() {
  74. return links;
  75. }
  76. public void setLinks(List<Link> links) {
  77. this.links = links;
  78. }
  79. @Override
  80. public boolean equals(java.lang.Object o) {
  81. if (this == o) {
  82. return true;
  83. }
  84. if (o == null || getClass() != o.getClass()) {
  85. return false;
  86. }
  87. ResourcesUser resourcesUser = (ResourcesUser) o;
  88. return Objects.equals(this.content, resourcesUser.content) &&
  89. Objects.equals(this.links, resourcesUser.links);
  90. }
  91. @Override
  92. public int hashCode() {
  93. return Objects.hash(content, links);
  94. }
  95. @Override
  96. public String toString() {
  97. StringBuilder sb = new StringBuilder();
  98. sb.append("class ResourcesUser {\n");
  99. sb.append(" content: ").append(toIndentedString(content)).append("\n");
  100. sb.append(" links: ").append(toIndentedString(links)).append("\n");
  101. sb.append("}");
  102. return sb.toString();
  103. }
  104. /**
  105. * Convert the given object to string with each line indented by 4 spaces
  106. * (except the first line).
  107. */
  108. private String toIndentedString(java.lang.Object o) {
  109. if (o == null) {
  110. return "null";
  111. }
  112. return o.toString().replace("\n", "\n ");
  113. }
  114. }