/src/main/java/io/swagger/client/model/ApiError.java

https://bitbucket.org/hbhackathon/travelplace · Java · 122 lines · 65 code · 19 blank · 38 comment · 8 complexity · cb0afde89392913efd668ee5b903a6f2 MD5 · raw file

  1. /**
  2. * Hotel Booking API
  3. * BookingAPI covers the complete booking process; it allows generating lists of hotels, confirming bookings, getting lists of bookings, making cancellations and obtaining booking information.
  4. *
  5. * OpenAPI spec version: 1.0
  6. * Contact: apitude@hotelbeds.com
  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. * Licensed under the Apache License, Version 2.0 (the "License");
  13. * you may not use this file except in compliance with the License.
  14. * You may obtain a copy of the License at
  15. *
  16. * http://www.apache.org/licenses/LICENSE-2.0
  17. *
  18. * Unless required by applicable law or agreed to in writing, software
  19. * distributed under the License is distributed on an "AS IS" BASIS,
  20. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  21. * See the License for the specific language governing permissions and
  22. * limitations under the License.
  23. */
  24. package io.swagger.client.model;
  25. import java.util.Objects;
  26. import com.google.gson.annotations.SerializedName;
  27. import io.swagger.annotations.ApiModel;
  28. import io.swagger.annotations.ApiModelProperty;
  29. /**
  30. * ApiError
  31. */
  32. @javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-23T00:06:16.128+01:00")
  33. public class ApiError {
  34. @SerializedName("code")
  35. private String code = null;
  36. @SerializedName("message")
  37. private String message = null;
  38. public ApiError code(String code) {
  39. this.code = code;
  40. return this;
  41. }
  42. /**
  43. * Get code
  44. * @return code
  45. **/
  46. @ApiModelProperty(example = "null", value = "")
  47. public String getCode() {
  48. return code;
  49. }
  50. public void setCode(String code) {
  51. this.code = code;
  52. }
  53. public ApiError message(String message) {
  54. this.message = message;
  55. return this;
  56. }
  57. /**
  58. * Get message
  59. * @return message
  60. **/
  61. @ApiModelProperty(example = "null", value = "")
  62. public String getMessage() {
  63. return message;
  64. }
  65. public void setMessage(String message) {
  66. this.message = message;
  67. }
  68. @Override
  69. public boolean equals(Object o) {
  70. if (this == o) {
  71. return true;
  72. }
  73. if (o == null || getClass() != o.getClass()) {
  74. return false;
  75. }
  76. ApiError apiError = (ApiError) o;
  77. return Objects.equals(this.code, apiError.code) &&
  78. Objects.equals(this.message, apiError.message);
  79. }
  80. @Override
  81. public int hashCode() {
  82. return Objects.hash(code, message);
  83. }
  84. @Override
  85. public String toString() {
  86. StringBuilder sb = new StringBuilder();
  87. sb.append("class ApiError {\n");
  88. sb.append(" code: ").append(toIndentedString(code)).append("\n");
  89. sb.append(" message: ").append(toIndentedString(message)).append("\n");
  90. sb.append("}");
  91. return sb.toString();
  92. }
  93. /**
  94. * Convert the given object to string with each line indented by 4 spaces
  95. * (except the first line).
  96. */
  97. private String toIndentedString(Object o) {
  98. if (o == null) {
  99. return "null";
  100. }
  101. return o.toString().replace("\n", "\n ");
  102. }
  103. }