com.ziqni.admin.sdk.model.Achievement 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 com.ziqni.admin.sdk.model.AchievementAllOf;
import com.ziqni.admin.sdk.model.AchievementStatus;
import com.ziqni.admin.sdk.model.AchievementStrategies;
import com.ziqni.admin.sdk.model.DependantOn;
import com.ziqni.admin.sdk.model.ModelDefault;
import com.ziqni.admin.sdk.model.OptParamModels;
import com.ziqni.admin.sdk.model.ProductReduced;
import com.ziqni.admin.sdk.model.Scheduling;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Achievement
*/
@JsonPropertyOrder({
Achievement.JSON_PROPERTY_ID,
Achievement.JSON_PROPERTY_SPACE_NAME,
Achievement.JSON_PROPERTY_CREATED,
Achievement.JSON_PROPERTY_CUSTOM_FIELDS,
Achievement.JSON_PROPERTY_TAGS,
Achievement.JSON_PROPERTY_METADATA,
Achievement.JSON_PROPERTY_NAME,
Achievement.JSON_PROPERTY_DESCRIPTION,
Achievement.JSON_PROPERTY_TERMS_AND_CONDITIONS,
Achievement.JSON_PROPERTY_ICON,
Achievement.JSON_PROPERTY_BANNER,
Achievement.JSON_PROPERTY_BANNER_LOW_RESOLUTION,
Achievement.JSON_PROPERTY_BANNER_HIGH_RESOLUTION,
Achievement.JSON_PROPERTY_SCHEDULING,
Achievement.JSON_PROPERTY_MAX_NUMBER_OF_ISSUES,
Achievement.JSON_PROPERTY_STATUS,
Achievement.JSON_PROPERTY_STATUS_CODE,
Achievement.JSON_PROPERTY_CONSTRAINTS,
Achievement.JSON_PROPERTY_ACHIEVEMENT_DEPENDENCIES,
Achievement.JSON_PROPERTY_MEMBER_TAGS_FILTER,
Achievement.JSON_PROPERTY_PRODUCTS,
Achievement.JSON_PROPERTY_PRODUCT_TAGS_FILTER,
Achievement.JSON_PROPERTY_STRATEGIES
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Achievement {
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_SPACE_NAME = "spaceName";
private String spaceName;
public static final String JSON_PROPERTY_CREATED = "created";
private OffsetDateTime created;
public static final String JSON_PROPERTY_CUSTOM_FIELDS = "customFields";
private Map customFields = null;
public static final String JSON_PROPERTY_TAGS = "tags";
private List tags = null;
public static final String JSON_PROPERTY_METADATA = "metadata";
private Map metadata = null;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;
public static final String JSON_PROPERTY_TERMS_AND_CONDITIONS = "termsAndConditions";
private String termsAndConditions;
public static final String JSON_PROPERTY_ICON = "icon";
private String icon;
public static final String JSON_PROPERTY_BANNER = "banner";
private String banner;
public static final String JSON_PROPERTY_BANNER_LOW_RESOLUTION = "bannerLowResolution";
private String bannerLowResolution;
public static final String JSON_PROPERTY_BANNER_HIGH_RESOLUTION = "bannerHighResolution";
private String bannerHighResolution;
public static final String JSON_PROPERTY_SCHEDULING = "scheduling";
private Scheduling scheduling;
public static final String JSON_PROPERTY_MAX_NUMBER_OF_ISSUES = "maxNumberOfIssues";
private Integer maxNumberOfIssues;
public static final String JSON_PROPERTY_STATUS = "status";
private AchievementStatus status;
public static final String JSON_PROPERTY_STATUS_CODE = "statusCode";
private Integer statusCode;
public static final String JSON_PROPERTY_CONSTRAINTS = "constraints";
private List constraints = new ArrayList<>();
public static final String JSON_PROPERTY_ACHIEVEMENT_DEPENDENCIES = "achievementDependencies";
private DependantOn achievementDependencies;
public static final String JSON_PROPERTY_MEMBER_TAGS_FILTER = "memberTagsFilter";
private DependantOn memberTagsFilter;
public static final String JSON_PROPERTY_PRODUCTS = "products";
private List products = null;
public static final String JSON_PROPERTY_PRODUCT_TAGS_FILTER = "productTagsFilter";
private DependantOn productTagsFilter;
public static final String JSON_PROPERTY_STRATEGIES = "strategies";
private AchievementStrategies strategies;
public Achievement id(String id) {
this.id = id;
return this;
}
/**
* A unique system generated identifier
* @return id
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "sc1samQmVr61KgaPQq7x", required = true, value = "A unique system generated identifier")
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(String id) {
this.id = id;
}
public Achievement spaceName(String spaceName) {
this.spaceName = spaceName;
return this;
}
/**
* This is the space name which is linked to the account
* @return spaceName
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "Your_space_name", required = true, value = "This is the space name which is linked to the account")
@JsonProperty(JSON_PROPERTY_SPACE_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getSpaceName() {
return spaceName;
}
@JsonProperty(JSON_PROPERTY_SPACE_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setSpaceName(String spaceName) {
this.spaceName = spaceName;
}
public Achievement created(OffsetDateTime created) {
this.created = created;
return this;
}
/**
* ISO8601 timestamp for when a Model was created. All records are stored in UTC time zone
* @return created
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "ISO8601 timestamp for when a Model was created. All records are stored in UTC time zone")
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public OffsetDateTime getCreated() {
return created;
}
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCreated(OffsetDateTime created) {
this.created = created;
}
public Achievement customFields(Map customFields) {
this.customFields = customFields;
return this;
}
public Achievement putCustomFieldsItem(String key, Object customFieldsItem) {
if (this.customFields == null) {
this.customFields = new HashMap<>();
}
this.customFields.put(key, customFieldsItem);
return this;
}
/**
* Get customFields
* @return customFields
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_CUSTOM_FIELDS)
@JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS)
public Map getCustomFields() {
return customFields;
}
@JsonProperty(JSON_PROPERTY_CUSTOM_FIELDS)
@JsonInclude(content = JsonInclude.Include.ALWAYS, value = JsonInclude.Include.USE_DEFAULTS)
public void setCustomFields(Map customFields) {
this.customFields = customFields;
}
public Achievement tags(List tags) {
this.tags = tags;
return this;
}
public Achievement addTagsItem(String tagsItem) {
if (this.tags == null) {
this.tags = new ArrayList<>();
}
this.tags.add(tagsItem);
return this;
}
/**
* A list of id's used to tag models
* @return tags
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A list of id's used to tag models")
@JsonProperty(JSON_PROPERTY_TAGS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getTags() {
return tags;
}
@JsonProperty(JSON_PROPERTY_TAGS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTags(List tags) {
this.tags = tags;
}
public Achievement metadata(Map metadata) {
this.metadata = metadata;
return this;
}
public Achievement putMetadataItem(String key, String metadataItem) {
if (this.metadata == null) {
this.metadata = new HashMap<>();
}
this.metadata.put(key, metadataItem);
return this;
}
/**
* Get metadata
* @return metadata
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_METADATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getMetadata() {
return metadata;
}
@JsonProperty(JSON_PROPERTY_METADATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMetadata(Map metadata) {
this.metadata = metadata;
}
public Achievement name(String name) {
this.name = name;
return this;
}
/**
* A name for the Achievement. Can be translated
* @return name
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "A name for the Achievement. Can be translated")
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setName(String name) {
this.name = name;
}
public Achievement description(String description) {
this.description = description;
return this;
}
/**
* A name for the Achievement. Can be translated
* @return description
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A name for the Achievement. Can be translated")
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDescription() {
return description;
}
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDescription(String description) {
this.description = description;
}
public Achievement termsAndConditions(String termsAndConditions) {
this.termsAndConditions = termsAndConditions;
return this;
}
/**
* Terms and conditions of an achievement. Can be translated
* @return termsAndConditions
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Terms and conditions of an achievement. Can be translated")
@JsonProperty(JSON_PROPERTY_TERMS_AND_CONDITIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTermsAndConditions() {
return termsAndConditions;
}
@JsonProperty(JSON_PROPERTY_TERMS_AND_CONDITIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTermsAndConditions(String termsAndConditions) {
this.termsAndConditions = termsAndConditions;
}
public Achievement icon(String icon) {
this.icon = icon;
return this;
}
/**
* An Icon id that has been pre uploaded to the system to display for Achievement
* @return icon
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "An Icon id that has been pre uploaded to the system to display for Achievement")
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getIcon() {
return icon;
}
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setIcon(String icon) {
this.icon = icon;
}
public Achievement banner(String banner) {
this.banner = banner;
return this;
}
/**
* A banner id that has been pre uploaded to the system to display for Achievement
* @return banner
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A banner id that has been pre uploaded to the system to display for Achievement")
@JsonProperty(JSON_PROPERTY_BANNER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getBanner() {
return banner;
}
@JsonProperty(JSON_PROPERTY_BANNER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBanner(String banner) {
this.banner = banner;
}
public Achievement bannerLowResolution(String bannerLowResolution) {
this.bannerLowResolution = bannerLowResolution;
return this;
}
/**
* A bannerLowResolution id that has been pre uploaded to the system to display for Achievement
* @return bannerLowResolution
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A bannerLowResolution id that has been pre uploaded to the system to display for Achievement")
@JsonProperty(JSON_PROPERTY_BANNER_LOW_RESOLUTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getBannerLowResolution() {
return bannerLowResolution;
}
@JsonProperty(JSON_PROPERTY_BANNER_LOW_RESOLUTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBannerLowResolution(String bannerLowResolution) {
this.bannerLowResolution = bannerLowResolution;
}
public Achievement bannerHighResolution(String bannerHighResolution) {
this.bannerHighResolution = bannerHighResolution;
return this;
}
/**
* A bannerHighResolution id that has been pre uploaded to the system to display for Achievement
* @return bannerHighResolution
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A bannerHighResolution id that has been pre uploaded to the system to display for Achievement")
@JsonProperty(JSON_PROPERTY_BANNER_HIGH_RESOLUTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getBannerHighResolution() {
return bannerHighResolution;
}
@JsonProperty(JSON_PROPERTY_BANNER_HIGH_RESOLUTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBannerHighResolution(String bannerHighResolution) {
this.bannerHighResolution = bannerHighResolution;
}
public Achievement scheduling(Scheduling scheduling) {
this.scheduling = scheduling;
return this;
}
/**
* Get scheduling
* @return scheduling
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SCHEDULING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Scheduling getScheduling() {
return scheduling;
}
@JsonProperty(JSON_PROPERTY_SCHEDULING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setScheduling(Scheduling scheduling) {
this.scheduling = scheduling;
}
public Achievement maxNumberOfIssues(Integer maxNumberOfIssues) {
this.maxNumberOfIssues = maxNumberOfIssues;
return this;
}
/**
* Maximum number of issued achievements
* @return maxNumberOfIssues
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Maximum number of issued achievements")
@JsonProperty(JSON_PROPERTY_MAX_NUMBER_OF_ISSUES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getMaxNumberOfIssues() {
return maxNumberOfIssues;
}
@JsonProperty(JSON_PROPERTY_MAX_NUMBER_OF_ISSUES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMaxNumberOfIssues(Integer maxNumberOfIssues) {
this.maxNumberOfIssues = maxNumberOfIssues;
}
public Achievement status(AchievementStatus status) {
this.status = status;
return this;
}
/**
* Get status
* @return status
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_STATUS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public AchievementStatus getStatus() {
return status;
}
@JsonProperty(JSON_PROPERTY_STATUS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setStatus(AchievementStatus status) {
this.status = status;
}
/**
* The code of the contest
* @return statusCode
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "3", value = "The code of the contest")
@JsonProperty(JSON_PROPERTY_STATUS_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getStatusCode() {
return statusCode;
}
public Achievement constraints(List constraints) {
this.constraints = constraints;
return this;
}
public Achievement addConstraintsItem(String constraintsItem) {
this.constraints.add(constraintsItem);
return this;
}
/**
* Additional constraints, if set means true
* @return constraints
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "- deprecated - notifyMember - isHidden - optinRequiredForEntrants - expired", required = true, value = "Additional constraints, if set means true")
@JsonProperty(JSON_PROPERTY_CONSTRAINTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public List getConstraints() {
return constraints;
}
@JsonProperty(JSON_PROPERTY_CONSTRAINTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setConstraints(List constraints) {
this.constraints = constraints;
}
public Achievement achievementDependencies(DependantOn achievementDependencies) {
this.achievementDependencies = achievementDependencies;
return this;
}
/**
* Get achievementDependencies
* @return achievementDependencies
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_ACHIEVEMENT_DEPENDENCIES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public DependantOn getAchievementDependencies() {
return achievementDependencies;
}
@JsonProperty(JSON_PROPERTY_ACHIEVEMENT_DEPENDENCIES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAchievementDependencies(DependantOn achievementDependencies) {
this.achievementDependencies = achievementDependencies;
}
public Achievement memberTagsFilter(DependantOn memberTagsFilter) {
this.memberTagsFilter = memberTagsFilter;
return this;
}
/**
* Get memberTagsFilter
* @return memberTagsFilter
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_MEMBER_TAGS_FILTER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public DependantOn getMemberTagsFilter() {
return memberTagsFilter;
}
@JsonProperty(JSON_PROPERTY_MEMBER_TAGS_FILTER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMemberTagsFilter(DependantOn memberTagsFilter) {
this.memberTagsFilter = memberTagsFilter;
}
public Achievement products(List products) {
this.products = products;
return this;
}
public Achievement addProductsItem(ProductReduced productsItem) {
if (this.products == null) {
this.products = new ArrayList<>();
}
this.products.add(productsItem);
return this;
}
/**
* Restrict this to specific products
* @return products
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Restrict this to specific products")
@JsonProperty(JSON_PROPERTY_PRODUCTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getProducts() {
return products;
}
@JsonProperty(JSON_PROPERTY_PRODUCTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setProducts(List products) {
this.products = products;
}
public Achievement productTagsFilter(DependantOn productTagsFilter) {
this.productTagsFilter = productTagsFilter;
return this;
}
/**
* Get productTagsFilter
* @return productTagsFilter
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_PRODUCT_TAGS_FILTER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public DependantOn getProductTagsFilter() {
return productTagsFilter;
}
@JsonProperty(JSON_PROPERTY_PRODUCT_TAGS_FILTER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setProductTagsFilter(DependantOn productTagsFilter) {
this.productTagsFilter = productTagsFilter;
}
public Achievement strategies(AchievementStrategies strategies) {
this.strategies = strategies;
return this;
}
/**
* Get strategies
* @return strategies
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_STRATEGIES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public AchievementStrategies getStrategies() {
return strategies;
}
@JsonProperty(JSON_PROPERTY_STRATEGIES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setStrategies(AchievementStrategies strategies) {
this.strategies = strategies;
}
/**
* Return true if this Achievement object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Achievement achievement = (Achievement) o;
return Objects.equals(this.id, achievement.id) &&
Objects.equals(this.spaceName, achievement.spaceName) &&
Objects.equals(this.created, achievement.created) &&
Objects.equals(this.customFields, achievement.customFields) &&
Objects.equals(this.tags, achievement.tags) &&
Objects.equals(this.metadata, achievement.metadata) &&
Objects.equals(this.name, achievement.name) &&
Objects.equals(this.description, achievement.description) &&
Objects.equals(this.termsAndConditions, achievement.termsAndConditions) &&
Objects.equals(this.icon, achievement.icon) &&
Objects.equals(this.banner, achievement.banner) &&
Objects.equals(this.bannerLowResolution, achievement.bannerLowResolution) &&
Objects.equals(this.bannerHighResolution, achievement.bannerHighResolution) &&
Objects.equals(this.scheduling, achievement.scheduling) &&
Objects.equals(this.maxNumberOfIssues, achievement.maxNumberOfIssues) &&
Objects.equals(this.status, achievement.status) &&
Objects.equals(this.statusCode, achievement.statusCode) &&
Objects.equals(this.constraints, achievement.constraints) &&
Objects.equals(this.achievementDependencies, achievement.achievementDependencies) &&
Objects.equals(this.memberTagsFilter, achievement.memberTagsFilter) &&
Objects.equals(this.products, achievement.products) &&
Objects.equals(this.productTagsFilter, achievement.productTagsFilter) &&
Objects.equals(this.strategies, achievement.strategies);
}
@Override
public int hashCode() {
return Objects.hash(id, spaceName, created, customFields, tags, metadata, name, description, termsAndConditions, icon, banner, bannerLowResolution, bannerHighResolution, scheduling, maxNumberOfIssues, status, statusCode, constraints, achievementDependencies, memberTagsFilter, products, productTagsFilter, strategies);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Achievement {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" spaceName: ").append(toIndentedString(spaceName)).append("\n");
sb.append(" created: ").append(toIndentedString(created)).append("\n");
sb.append(" customFields: ").append(toIndentedString(customFields)).append("\n");
sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" termsAndConditions: ").append(toIndentedString(termsAndConditions)).append("\n");
sb.append(" icon: ").append(toIndentedString(icon)).append("\n");
sb.append(" banner: ").append(toIndentedString(banner)).append("\n");
sb.append(" bannerLowResolution: ").append(toIndentedString(bannerLowResolution)).append("\n");
sb.append(" bannerHighResolution: ").append(toIndentedString(bannerHighResolution)).append("\n");
sb.append(" scheduling: ").append(toIndentedString(scheduling)).append("\n");
sb.append(" maxNumberOfIssues: ").append(toIndentedString(maxNumberOfIssues)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" statusCode: ").append(toIndentedString(statusCode)).append("\n");
sb.append(" constraints: ").append(toIndentedString(constraints)).append("\n");
sb.append(" achievementDependencies: ").append(toIndentedString(achievementDependencies)).append("\n");
sb.append(" memberTagsFilter: ").append(toIndentedString(memberTagsFilter)).append("\n");
sb.append(" products: ").append(toIndentedString(products)).append("\n");
sb.append(" productTagsFilter: ").append(toIndentedString(productTagsFilter)).append("\n");
sb.append(" strategies: ").append(toIndentedString(strategies)).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