com.wultra.app.onboardingserver.provider.zenid.model.api.ZenidWebVerifyCardsRecalledRequest 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.ZenidWebVerifyCardsRecalledRequestCardInfo;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.wultra.app.onboardingserver.provider.zenid.model.ApiClient;
/**
* ZenidWebVerifyCardsRecalledRequest
*/
@JsonPropertyOrder({
ZenidWebVerifyCardsRecalledRequest.JSON_PROPERTY_CARDS_TO_VERIFY
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ZenidWebVerifyCardsRecalledRequest {
public static final String JSON_PROPERTY_CARDS_TO_VERIFY = "CardsToVerify";
private List cardsToVerify = new ArrayList<>();
public ZenidWebVerifyCardsRecalledRequest() {
}
public ZenidWebVerifyCardsRecalledRequest cardsToVerify(List cardsToVerify) {
this.cardsToVerify = cardsToVerify;
return this;
}
public ZenidWebVerifyCardsRecalledRequest addCardsToVerifyItem(ZenidWebVerifyCardsRecalledRequestCardInfo cardsToVerifyItem) {
if (this.cardsToVerify == null) {
this.cardsToVerify = new ArrayList<>();
}
this.cardsToVerify.add(cardsToVerifyItem);
return this;
}
/**
* Get cardsToVerify
* @return cardsToVerify
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CARDS_TO_VERIFY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getCardsToVerify() {
return cardsToVerify;
}
@JsonProperty(JSON_PROPERTY_CARDS_TO_VERIFY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setCardsToVerify(List cardsToVerify) {
this.cardsToVerify = cardsToVerify;
}
/**
* Return true if this ZenidWeb.VerifyCardsRecalledRequest object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ZenidWebVerifyCardsRecalledRequest zenidWebVerifyCardsRecalledRequest = (ZenidWebVerifyCardsRecalledRequest) o;
return Objects.equals(this.cardsToVerify, zenidWebVerifyCardsRecalledRequest.cardsToVerify);
}
@Override
public int hashCode() {
return Objects.hash(cardsToVerify);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ZenidWebVerifyCardsRecalledRequest {\n");
sb.append(" cardsToVerify: ").append(toIndentedString(cardsToVerify)).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 `CardsToVerify` to the URL query string
if (getCardsToVerify() != null) {
for (int i = 0; i < getCardsToVerify().size(); i++) {
if (getCardsToVerify().get(i) != null) {
joiner.add(getCardsToVerify().get(i).toUrlQueryString(String.format("%sCardsToVerify%s%s", prefix, suffix,
"".equals(suffix) ? "" : String.format("%s%d%s", containerPrefix, i, containerSuffix))));
}
}
}
return joiner.toString();
}
}