com.klarna.rest.api.checkout.model.CheckoutDimensions Maven / Gradle / Ivy
The newest version!
/*
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 1.0.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 com.klarna.rest.api.checkout.model;
import java.util.Objects;
import java.util.Arrays;
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;
/**
* CheckoutDimensions
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2020-04-02T15:03:42.622Z")
public class CheckoutDimensions {
@JsonProperty("height")
private Long height = null;
@JsonProperty("width")
private Long width = null;
@JsonProperty("length")
private Long length = null;
public CheckoutDimensions height(Long height) {
this.height = height;
return this;
}
/**
* The product's height as used in the merchant's webshop. Non-negative. Measured in millimeters.
* @return height
**/
@ApiModelProperty(example = "100", value = "The product's height as used in the merchant's webshop. Non-negative. Measured in millimeters.")
public Long getHeight() {
return height;
}
public void setHeight(Long height) {
this.height = height;
}
public CheckoutDimensions width(Long width) {
this.width = width;
return this;
}
/**
* The product's width as used in the merchant's webshop. Non-negative. Measured in millimeters.
* @return width
**/
@ApiModelProperty(example = "100", value = "The product's width as used in the merchant's webshop. Non-negative. Measured in millimeters.")
public Long getWidth() {
return width;
}
public void setWidth(Long width) {
this.width = width;
}
public CheckoutDimensions length(Long length) {
this.length = length;
return this;
}
/**
* The product's length as used in the merchant's webshop. Non-negative. Measured in millimeters.
* @return length
**/
@ApiModelProperty(example = "100", value = "The product's length as used in the merchant's webshop. Non-negative. Measured in millimeters.")
public Long getLength() {
return length;
}
public void setLength(Long length) {
this.length = length;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CheckoutDimensions dimensions = (CheckoutDimensions) o;
return Objects.equals(this.height, dimensions.height) &&
Objects.equals(this.width, dimensions.width) &&
Objects.equals(this.length, dimensions.length);
}
@Override
public int hashCode() {
return Objects.hash(height, width, length);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CheckoutDimensions {\n");
sb.append(" height: ").append(toIndentedString(height)).append("\n");
sb.append(" width: ").append(toIndentedString(width)).append("\n");
sb.append(" length: ").append(toIndentedString(length)).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 ");
}
}