com.wultra.app.onboardingserver.provider.zenid.model.api.ZenidSharedEyesInfo Maven / Gradle / Ivy
The newest version!
/*
* ZenidWeb
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.wultra.app.onboardingserver.provider.zenid.model.api;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.StringJoiner;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.wultra.app.onboardingserver.provider.zenid.model.api.SystemDrawingPointF;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.wultra.app.onboardingserver.provider.zenid.model.ApiClient;
/**
* ZenidSharedEyesInfo
*/
@JsonPropertyOrder({
ZenidSharedEyesInfo.JSON_PROPERTY_BOX_LEFT_TOP_REL,
ZenidSharedEyesInfo.JSON_PROPERTY_BOX_RIGHT_BOTTOM_REL
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ZenidSharedEyesInfo {
public static final String JSON_PROPERTY_BOX_LEFT_TOP_REL = "BoxLeftTopRel";
private SystemDrawingPointF boxLeftTopRel;
public static final String JSON_PROPERTY_BOX_RIGHT_BOTTOM_REL = "BoxRightBottomRel";
private SystemDrawingPointF boxRightBottomRel;
public ZenidSharedEyesInfo() {
}
public ZenidSharedEyesInfo boxLeftTopRel(SystemDrawingPointF boxLeftTopRel) {
this.boxLeftTopRel = boxLeftTopRel;
return this;
}
/**
* Get boxLeftTopRel
* @return boxLeftTopRel
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_BOX_LEFT_TOP_REL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public SystemDrawingPointF getBoxLeftTopRel() {
return boxLeftTopRel;
}
@JsonProperty(JSON_PROPERTY_BOX_LEFT_TOP_REL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBoxLeftTopRel(SystemDrawingPointF boxLeftTopRel) {
this.boxLeftTopRel = boxLeftTopRel;
}
public ZenidSharedEyesInfo boxRightBottomRel(SystemDrawingPointF boxRightBottomRel) {
this.boxRightBottomRel = boxRightBottomRel;
return this;
}
/**
* Get boxRightBottomRel
* @return boxRightBottomRel
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_BOX_RIGHT_BOTTOM_REL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public SystemDrawingPointF getBoxRightBottomRel() {
return boxRightBottomRel;
}
@JsonProperty(JSON_PROPERTY_BOX_RIGHT_BOTTOM_REL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBoxRightBottomRel(SystemDrawingPointF boxRightBottomRel) {
this.boxRightBottomRel = boxRightBottomRel;
}
/**
* Return true if this ZenidShared.EyesInfo object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ZenidSharedEyesInfo zenidSharedEyesInfo = (ZenidSharedEyesInfo) o;
return Objects.equals(this.boxLeftTopRel, zenidSharedEyesInfo.boxLeftTopRel) &&
Objects.equals(this.boxRightBottomRel, zenidSharedEyesInfo.boxRightBottomRel);
}
@Override
public int hashCode() {
return Objects.hash(boxLeftTopRel, boxRightBottomRel);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ZenidSharedEyesInfo {\n");
sb.append(" boxLeftTopRel: ").append(toIndentedString(boxLeftTopRel)).append("\n");
sb.append(" boxRightBottomRel: ").append(toIndentedString(boxRightBottomRel)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
/**
* Convert the instance into URL query string.
*
* @return URL query string
*/
public String toUrlQueryString() {
return toUrlQueryString(null);
}
/**
* Convert the instance into URL query string.
*
* @param prefix prefix of the query string
* @return URL query string
*/
public String toUrlQueryString(String prefix) {
String suffix = "";
String containerSuffix = "";
String containerPrefix = "";
if (prefix == null) {
// style=form, explode=true, e.g. /pet?name=cat&type=manx
prefix = "";
} else {
// deepObject style e.g. /pet?id[name]=cat&id[type]=manx
prefix = prefix + "[";
suffix = "]";
containerSuffix = "]";
containerPrefix = "[";
}
StringJoiner joiner = new StringJoiner("&");
// add `BoxLeftTopRel` to the URL query string
if (getBoxLeftTopRel() != null) {
joiner.add(getBoxLeftTopRel().toUrlQueryString(prefix + "BoxLeftTopRel" + suffix));
}
// add `BoxRightBottomRel` to the URL query string
if (getBoxRightBottomRel() != null) {
joiner.add(getBoxRightBottomRel().toUrlQueryString(prefix + "BoxRightBottomRel" + suffix));
}
return joiner.toString();
}
}