com.wultra.app.onboardingserver.provider.zenid.model.api.ZenidSharedLicenseCountables 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 java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.wultra.app.onboardingserver.provider.zenid.model.ApiClient;
/**
* ZenidSharedLicenseCountables
*/
@JsonPropertyOrder({
ZenidSharedLicenseCountables.JSON_PROPERTY_PAGE_COUNT,
ZenidSharedLicenseCountables.JSON_PROPERTY_SELFIE_COUNT,
ZenidSharedLicenseCountables.JSON_PROPERTY_FRAUD_COUNT
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ZenidSharedLicenseCountables {
public static final String JSON_PROPERTY_PAGE_COUNT = "PageCount";
private Integer pageCount;
public static final String JSON_PROPERTY_SELFIE_COUNT = "SelfieCount";
private Integer selfieCount;
public static final String JSON_PROPERTY_FRAUD_COUNT = "FraudCount";
private Integer fraudCount;
public ZenidSharedLicenseCountables() {
}
public ZenidSharedLicenseCountables pageCount(Integer pageCount) {
this.pageCount = pageCount;
return this;
}
/**
* Note this is actually \"document count\"
* @return pageCount
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE_COUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getPageCount() {
return pageCount;
}
@JsonProperty(JSON_PROPERTY_PAGE_COUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPageCount(Integer pageCount) {
this.pageCount = pageCount;
}
public ZenidSharedLicenseCountables selfieCount(Integer selfieCount) {
this.selfieCount = selfieCount;
return this;
}
/**
* Get selfieCount
* @return selfieCount
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SELFIE_COUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getSelfieCount() {
return selfieCount;
}
@JsonProperty(JSON_PROPERTY_SELFIE_COUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSelfieCount(Integer selfieCount) {
this.selfieCount = selfieCount;
}
public ZenidSharedLicenseCountables fraudCount(Integer fraudCount) {
this.fraudCount = fraudCount;
return this;
}
/**
* Get fraudCount
* @return fraudCount
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FRAUD_COUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getFraudCount() {
return fraudCount;
}
@JsonProperty(JSON_PROPERTY_FRAUD_COUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFraudCount(Integer fraudCount) {
this.fraudCount = fraudCount;
}
/**
* Return true if this ZenidShared.LicenseCountables object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ZenidSharedLicenseCountables zenidSharedLicenseCountables = (ZenidSharedLicenseCountables) o;
return Objects.equals(this.pageCount, zenidSharedLicenseCountables.pageCount) &&
Objects.equals(this.selfieCount, zenidSharedLicenseCountables.selfieCount) &&
Objects.equals(this.fraudCount, zenidSharedLicenseCountables.fraudCount);
}
@Override
public int hashCode() {
return Objects.hash(pageCount, selfieCount, fraudCount);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ZenidSharedLicenseCountables {\n");
sb.append(" pageCount: ").append(toIndentedString(pageCount)).append("\n");
sb.append(" selfieCount: ").append(toIndentedString(selfieCount)).append("\n");
sb.append(" fraudCount: ").append(toIndentedString(fraudCount)).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 `PageCount` to the URL query string
if (getPageCount() != null) {
joiner.add(String.format("%sPageCount%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getPageCount()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `SelfieCount` to the URL query string
if (getSelfieCount() != null) {
joiner.add(String.format("%sSelfieCount%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getSelfieCount()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
// add `FraudCount` to the URL query string
if (getFraudCount() != null) {
joiner.add(String.format("%sFraudCount%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getFraudCount()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
}
return joiner.toString();
}
}