com.ziqni.admin.sdk.model.GoalMetricsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ziqni-admin-sdk Show documentation
Show all versions of ziqni-admin-sdk Show documentation
ZIQNI Admin SDK Java Client
/*
* ZIQNI Admin API
* Ziqni Application Services are used to manage and configure spaces. Change log: 2024-02-27 Added rewards reduced to the LeaderboardEntry response
*
* The version of the OpenAPI document: 3.0.17
* Contact: [email protected]
*
* 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.ziqni.admin.sdk.model;
import java.util.Objects;
import java.util.Arrays;
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* GoalMetricsRequest
*/
@JsonPropertyOrder({
GoalMetricsRequest.JSON_PROPERTY_MEMBER_IDS,
GoalMetricsRequest.JSON_PROPERTY_ENTITY_IDS
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class GoalMetricsRequest {
public static final String JSON_PROPERTY_MEMBER_IDS = "memberIds";
private List memberIds = null;
public static final String JSON_PROPERTY_ENTITY_IDS = "entityIds";
private List entityIds = null;
public GoalMetricsRequest memberIds(List memberIds) {
this.memberIds = memberIds;
return this;
}
public GoalMetricsRequest addMemberIdsItem(String memberIdsItem) {
if (this.memberIds == null) {
this.memberIds = new ArrayList<>();
}
this.memberIds.add(memberIdsItem);
return this;
}
/**
* The member identifiers to use
* @return memberIds
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The member identifiers to use")
@JsonProperty(JSON_PROPERTY_MEMBER_IDS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getMemberIds() {
return memberIds;
}
@JsonProperty(JSON_PROPERTY_MEMBER_IDS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMemberIds(List memberIds) {
this.memberIds = memberIds;
}
public GoalMetricsRequest entityIds(List entityIds) {
this.entityIds = entityIds;
return this;
}
public GoalMetricsRequest addEntityIdsItem(String entityIdsItem) {
if (this.entityIds == null) {
this.entityIds = new ArrayList<>();
}
this.entityIds.add(entityIdsItem);
return this;
}
/**
* The entity identifiers to use
* @return entityIds
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "The entity identifiers to use")
@JsonProperty(JSON_PROPERTY_ENTITY_IDS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getEntityIds() {
return entityIds;
}
@JsonProperty(JSON_PROPERTY_ENTITY_IDS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setEntityIds(List entityIds) {
this.entityIds = entityIds;
}
/**
* Return true if this GoalMetricsRequest object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GoalMetricsRequest goalMetricsRequest = (GoalMetricsRequest) o;
return Objects.equals(this.memberIds, goalMetricsRequest.memberIds) &&
Objects.equals(this.entityIds, goalMetricsRequest.entityIds);
}
@Override
public int hashCode() {
return Objects.hash(memberIds, entityIds);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GoalMetricsRequest {\n");
sb.append(" memberIds: ").append(toIndentedString(memberIds)).append("\n");
sb.append(" entityIds: ").append(toIndentedString(entityIds)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy