fi.metatavu.dcfb.client.ItemReservation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dcfb-api-client Show documentation
Show all versions of dcfb-api-client Show documentation
Metaform API specifications
/*
* DCFB API
* API spec for DCFB API.
*
* OpenAPI spec version: 0.0.1
*
*
* 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 fi.metatavu.dcfb.client;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.UUID;
/**
* ItemReservation
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-09-11T15:10:38.040+03:00")
public class ItemReservation {
@JsonProperty("id")
private UUID id = null;
@JsonProperty("amount")
private Long amount = null;
public ItemReservation id(UUID id) {
this.id = id;
return this;
}
/**
* Item id
* @return id
**/
@ApiModelProperty(value = "Item id")
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public ItemReservation amount(Long amount) {
this.amount = amount;
return this;
}
/**
* Get amount
* @return amount
**/
@ApiModelProperty(value = "")
public Long getAmount() {
return amount;
}
public void setAmount(Long amount) {
this.amount = amount;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ItemReservation itemReservation = (ItemReservation) o;
return Objects.equals(this.id, itemReservation.id) &&
Objects.equals(this.amount, itemReservation.amount);
}
@Override
public int hashCode() {
return Objects.hash(id, amount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ItemReservation {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" amount: ").append(toIndentedString(amount)).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 ");
}
}