com.ziqni.admin.sdk.model.CreateCompetitionRequest 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.
*
* The version of the OpenAPI document: 3.0.11
* 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.CompetitionType;
import com.ziqni.admin.sdk.model.CreateCompetitionRequestAllOf;
import com.ziqni.admin.sdk.model.CreateContestRequest;
import com.ziqni.admin.sdk.model.CreateOptParamModels;
import com.ziqni.admin.sdk.model.CreateRewardRequest;
import com.ziqni.admin.sdk.model.DependantOn;
import com.ziqni.admin.sdk.model.Rule;
import com.ziqni.admin.sdk.model.Translation;
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;
/**
* CreateCompetitionRequest
*/
@JsonPropertyOrder({
CreateCompetitionRequest.JSON_PROPERTY_CUSTOM_FIELDS,
CreateCompetitionRequest.JSON_PROPERTY_TAGS,
CreateCompetitionRequest.JSON_PROPERTY_METADATA,
CreateCompetitionRequest.JSON_PROPERTY_COMPETITION_TYPE,
CreateCompetitionRequest.JSON_PROPERTY_NUMBER_OF_ROUNDS,
CreateCompetitionRequest.JSON_PROPERTY_NUMBER_OF_GROUP_STAGES,
CreateCompetitionRequest.JSON_PROPERTY_NAME,
CreateCompetitionRequest.JSON_PROPERTY_DESCRIPTION,
CreateCompetitionRequest.JSON_PROPERTY_TERMS_AND_CONDITIONS,
CreateCompetitionRequest.JSON_PROPERTY_ENTRANT_MEMBER_TYPE,
CreateCompetitionRequest.JSON_PROPERTY_MAX_NUMBER_OF_ENTRANTS,
CreateCompetitionRequest.JSON_PROPERTY_MIN_NUMBER_OF_ENTRANTS,
CreateCompetitionRequest.JSON_PROPERTY_RULES,
CreateCompetitionRequest.JSON_PROPERTY_SCHEDULED_START_DATE,
CreateCompetitionRequest.JSON_PROPERTY_SCHEDULED_END_DATE,
CreateCompetitionRequest.JSON_PROPERTY_TRANSLATIONS,
CreateCompetitionRequest.JSON_PROPERTY_CONTESTS,
CreateCompetitionRequest.JSON_PROPERTY_REWARDS,
CreateCompetitionRequest.JSON_PROPERTY_CONSTRAINTS,
CreateCompetitionRequest.JSON_PROPERTY_ADD_CONSTRAINTS,
CreateCompetitionRequest.JSON_PROPERTY_PRODUCT_IDS,
CreateCompetitionRequest.JSON_PROPERTY_ENTRANT_MEMBER_TAGS_FILTER,
CreateCompetitionRequest.JSON_PROPERTY_PRODUCT_TAGS_FILTER,
CreateCompetitionRequest.JSON_PROPERTY_ICON,
CreateCompetitionRequest.JSON_PROPERTY_BANNER,
CreateCompetitionRequest.JSON_PROPERTY_BANNER_LOW_RESOLUTION,
CreateCompetitionRequest.JSON_PROPERTY_BANNER_HIGH_RESOLUTION
})
@javax.annotation.processing.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class CreateCompetitionRequest {
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_COMPETITION_TYPE = "competitionType";
private CompetitionType competitionType;
public static final String JSON_PROPERTY_NUMBER_OF_ROUNDS = "numberOfRounds";
private Integer numberOfRounds;
public static final String JSON_PROPERTY_NUMBER_OF_GROUP_STAGES = "numberOfGroupStages";
private Integer numberOfGroupStages;
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_ENTRANT_MEMBER_TYPE = "entrantMemberType";
private String entrantMemberType;
public static final String JSON_PROPERTY_MAX_NUMBER_OF_ENTRANTS = "maxNumberOfEntrants";
private Integer maxNumberOfEntrants;
public static final String JSON_PROPERTY_MIN_NUMBER_OF_ENTRANTS = "minNumberOfEntrants";
private Integer minNumberOfEntrants;
public static final String JSON_PROPERTY_RULES = "rules";
private List rules = null;
public static final String JSON_PROPERTY_SCHEDULED_START_DATE = "scheduledStartDate";
private OffsetDateTime scheduledStartDate;
public static final String JSON_PROPERTY_SCHEDULED_END_DATE = "scheduledEndDate";
private OffsetDateTime scheduledEndDate;
public static final String JSON_PROPERTY_TRANSLATIONS = "translations";
private List translations = null;
public static final String JSON_PROPERTY_CONTESTS = "contests";
private CreateContestRequest contests;
public static final String JSON_PROPERTY_REWARDS = "rewards";
private List rewards = null;
public static final String JSON_PROPERTY_CONSTRAINTS = "constraints";
private List constraints = new ArrayList<>();
public static final String JSON_PROPERTY_ADD_CONSTRAINTS = "addConstraints";
private List addConstraints = null;
public static final String JSON_PROPERTY_PRODUCT_IDS = "productIds";
private List productIds = new ArrayList<>();
public static final String JSON_PROPERTY_ENTRANT_MEMBER_TAGS_FILTER = "entrantMemberTagsFilter";
private DependantOn entrantMemberTagsFilter;
public static final String JSON_PROPERTY_PRODUCT_TAGS_FILTER = "productTagsFilter";
private DependantOn productTagsFilter;
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 CreateCompetitionRequest customFields(Map customFields) {
this.customFields = customFields;
return this;
}
public CreateCompetitionRequest putCustomFieldsItem(String key, Object customFieldsItem) {
if (this.customFields == null) {
this.customFields = new HashMap<>();
}
this.customFields.put(key, customFieldsItem);
return this;
}
/**
* A list of custom field entries
* @return customFields
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "A list of custom field entries")
@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 CreateCompetitionRequest tags(List tags) {
this.tags = tags;
return this;
}
public CreateCompetitionRequest 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(example = "[\"Dc4swmQBVd51K6gPQqFx\",\"Dc4swmQBVd51K6gPQqF2\"]", 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 CreateCompetitionRequest metadata(Map metadata) {
this.metadata = metadata;
return this;
}
public CreateCompetitionRequest 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 CreateCompetitionRequest competitionType(CompetitionType competitionType) {
this.competitionType = competitionType;
return this;
}
/**
* Get competitionType
* @return competitionType
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_COMPETITION_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public CompetitionType getCompetitionType() {
return competitionType;
}
@JsonProperty(JSON_PROPERTY_COMPETITION_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCompetitionType(CompetitionType competitionType) {
this.competitionType = competitionType;
}
public CreateCompetitionRequest numberOfRounds(Integer numberOfRounds) {
this.numberOfRounds = numberOfRounds;
return this;
}
/**
* Number of rounds to be played in a competition
* @return numberOfRounds
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "1", required = true, value = "Number of rounds to be played in a competition")
@JsonProperty(JSON_PROPERTY_NUMBER_OF_ROUNDS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Integer getNumberOfRounds() {
return numberOfRounds;
}
@JsonProperty(JSON_PROPERTY_NUMBER_OF_ROUNDS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setNumberOfRounds(Integer numberOfRounds) {
this.numberOfRounds = numberOfRounds;
}
public CreateCompetitionRequest numberOfGroupStages(Integer numberOfGroupStages) {
this.numberOfGroupStages = numberOfGroupStages;
return this;
}
/**
* Number of group stages
* @return numberOfGroupStages
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Number of group stages")
@JsonProperty(JSON_PROPERTY_NUMBER_OF_GROUP_STAGES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getNumberOfGroupStages() {
return numberOfGroupStages;
}
@JsonProperty(JSON_PROPERTY_NUMBER_OF_GROUP_STAGES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setNumberOfGroupStages(Integer numberOfGroupStages) {
this.numberOfGroupStages = numberOfGroupStages;
}
public CreateCompetitionRequest name(String name) {
this.name = name;
return this;
}
/**
* A name or a name of a competition. Can be translated
* @return name
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "Summer fest", required = true, value = "A name or a name of a competition. 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 CreateCompetitionRequest description(String description) {
this.description = description;
return this;
}
/**
* Description of the competition. Can be translated
* @return description
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "A competition that is for 1 day", value = "Description of the competition. 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 CreateCompetitionRequest termsAndConditions(String termsAndConditions) {
this.termsAndConditions = termsAndConditions;
return this;
}
/**
* Terms and conditions of a competition. Can be translated
* @return termsAndConditions
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "Participate to win", value = "Terms and conditions of a competition. 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 CreateCompetitionRequest entrantMemberType(String entrantMemberType) {
this.entrantMemberType = entrantMemberType;
return this;
}
/**
* Get entrantMemberType
* @return entrantMemberType
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_ENTRANT_MEMBER_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getEntrantMemberType() {
return entrantMemberType;
}
@JsonProperty(JSON_PROPERTY_ENTRANT_MEMBER_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setEntrantMemberType(String entrantMemberType) {
this.entrantMemberType = entrantMemberType;
}
public CreateCompetitionRequest maxNumberOfEntrants(Integer maxNumberOfEntrants) {
this.maxNumberOfEntrants = maxNumberOfEntrants;
return this;
}
/**
* Maximum number of partiipants allowed in a competition
* @return maxNumberOfEntrants
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "9999", value = "Maximum number of partiipants allowed in a competition")
@JsonProperty(JSON_PROPERTY_MAX_NUMBER_OF_ENTRANTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getMaxNumberOfEntrants() {
return maxNumberOfEntrants;
}
@JsonProperty(JSON_PROPERTY_MAX_NUMBER_OF_ENTRANTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMaxNumberOfEntrants(Integer maxNumberOfEntrants) {
this.maxNumberOfEntrants = maxNumberOfEntrants;
}
public CreateCompetitionRequest minNumberOfEntrants(Integer minNumberOfEntrants) {
this.minNumberOfEntrants = minNumberOfEntrants;
return this;
}
/**
* Maximum number of partiipants allowed in a competition
* @return minNumberOfEntrants
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "0", required = true, value = "Maximum number of partiipants allowed in a competition")
@JsonProperty(JSON_PROPERTY_MIN_NUMBER_OF_ENTRANTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Integer getMinNumberOfEntrants() {
return minNumberOfEntrants;
}
@JsonProperty(JSON_PROPERTY_MIN_NUMBER_OF_ENTRANTS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setMinNumberOfEntrants(Integer minNumberOfEntrants) {
this.minNumberOfEntrants = minNumberOfEntrants;
}
public CreateCompetitionRequest rules(List rules) {
this.rules = rules;
return this;
}
public CreateCompetitionRequest addRulesItem(Rule rulesItem) {
if (this.rules == null) {
this.rules = new ArrayList<>();
}
this.rules.add(rulesItem);
return this;
}
/**
* Get rules
* @return rules
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_RULES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getRules() {
return rules;
}
@JsonProperty(JSON_PROPERTY_RULES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRules(List rules) {
this.rules = rules;
}
public CreateCompetitionRequest scheduledStartDate(OffsetDateTime scheduledStartDate) {
this.scheduledStartDate = scheduledStartDate;
return this;
}
/**
* ISO8601 timestamp for when a Competition should start. All records are stored in UTC time zone
* @return scheduledStartDate
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "ISO8601 timestamp for when a Competition should start. All records are stored in UTC time zone")
@JsonProperty(JSON_PROPERTY_SCHEDULED_START_DATE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public OffsetDateTime getScheduledStartDate() {
return scheduledStartDate;
}
@JsonProperty(JSON_PROPERTY_SCHEDULED_START_DATE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setScheduledStartDate(OffsetDateTime scheduledStartDate) {
this.scheduledStartDate = scheduledStartDate;
}
public CreateCompetitionRequest scheduledEndDate(OffsetDateTime scheduledEndDate) {
this.scheduledEndDate = scheduledEndDate;
return this;
}
/**
* ISO8601 timestamp for when a Competition should end. All records are stored in UTC time zone
* @return scheduledEndDate
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "ISO8601 timestamp for when a Competition should end. All records are stored in UTC time zone")
@JsonProperty(JSON_PROPERTY_SCHEDULED_END_DATE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public OffsetDateTime getScheduledEndDate() {
return scheduledEndDate;
}
@JsonProperty(JSON_PROPERTY_SCHEDULED_END_DATE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setScheduledEndDate(OffsetDateTime scheduledEndDate) {
this.scheduledEndDate = scheduledEndDate;
}
public CreateCompetitionRequest translations(List translations) {
this.translations = translations;
return this;
}
public CreateCompetitionRequest addTranslationsItem(Translation translationsItem) {
if (this.translations == null) {
this.translations = new ArrayList<>();
}
this.translations.add(translationsItem);
return this;
}
/**
* Get translations
* @return translations
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_TRANSLATIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getTranslations() {
return translations;
}
@JsonProperty(JSON_PROPERTY_TRANSLATIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTranslations(List translations) {
this.translations = translations;
}
public CreateCompetitionRequest contests(CreateContestRequest contests) {
this.contests = contests;
return this;
}
/**
* Get contests
* @return contests
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_CONTESTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public CreateContestRequest getContests() {
return contests;
}
@JsonProperty(JSON_PROPERTY_CONTESTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setContests(CreateContestRequest contests) {
this.contests = contests;
}
public CreateCompetitionRequest rewards(List rewards) {
this.rewards = rewards;
return this;
}
public CreateCompetitionRequest addRewardsItem(CreateRewardRequest rewardsItem) {
if (this.rewards == null) {
this.rewards = new ArrayList<>();
}
this.rewards.add(rewardsItem);
return this;
}
/**
* Get rewards
* @return rewards
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_REWARDS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getRewards() {
return rewards;
}
@JsonProperty(JSON_PROPERTY_REWARDS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRewards(List rewards) {
this.rewards = rewards;
}
public CreateCompetitionRequest constraints(List constraints) {
this.constraints = constraints;
return this;
}
public CreateCompetitionRequest addConstraintsItem(String constraintsItem) {
this.constraints.add(constraintsItem);
return this;
}
/**
* Additional constraints
* @return constraints
* @deprecated
**/
@Deprecated
@javax.annotation.Nonnull
@ApiModelProperty(example = "- notifyMember - memberAcknowledgmentRequired - isPublic - autoStart - autoStop - optinRequiredForEntrants", required = true, value = "Additional constraints")
@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 CreateCompetitionRequest addConstraints(List addConstraints) {
this.addConstraints = addConstraints;
return this;
}
public CreateCompetitionRequest addAddConstraintsItem(String addConstraintsItem) {
if (this.addConstraints == null) {
this.addConstraints = new ArrayList<>();
}
this.addConstraints.add(addConstraintsItem);
return this;
}
/**
* Additional constraints
* @return addConstraints
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "- notifyMember - memberAcknowledgmentRequired - isPublic - autoStart - autoStop - optinRequiredForEntrants", value = "Additional constraints")
@JsonProperty(JSON_PROPERTY_ADD_CONSTRAINTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List getAddConstraints() {
return addConstraints;
}
@JsonProperty(JSON_PROPERTY_ADD_CONSTRAINTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAddConstraints(List addConstraints) {
this.addConstraints = addConstraints;
}
public CreateCompetitionRequest productIds(List productIds) {
this.productIds = productIds;
return this;
}
public CreateCompetitionRequest addProductIdsItem(String productIdsItem) {
this.productIds.add(productIdsItem);
return this;
}
/**
* Get productIds
* @return productIds
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_PRODUCT_IDS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public List getProductIds() {
return productIds;
}
@JsonProperty(JSON_PROPERTY_PRODUCT_IDS)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setProductIds(List productIds) {
this.productIds = productIds;
}
public CreateCompetitionRequest entrantMemberTagsFilter(DependantOn entrantMemberTagsFilter) {
this.entrantMemberTagsFilter = entrantMemberTagsFilter;
return this;
}
/**
* Get entrantMemberTagsFilter
* @return entrantMemberTagsFilter
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_ENTRANT_MEMBER_TAGS_FILTER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public DependantOn getEntrantMemberTagsFilter() {
return entrantMemberTagsFilter;
}
@JsonProperty(JSON_PROPERTY_ENTRANT_MEMBER_TAGS_FILTER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setEntrantMemberTagsFilter(DependantOn entrantMemberTagsFilter) {
this.entrantMemberTagsFilter = entrantMemberTagsFilter;
}
public CreateCompetitionRequest 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 CreateCompetitionRequest icon(String icon) {
this.icon = icon;
return this;
}
/**
* Link to the icon
* @return icon
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "https://.cdn.ziqni.com/_id/", value = "Link to the icon")
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getIcon() {
return icon;
}
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setIcon(String icon) {
this.icon = icon;
}
public CreateCompetitionRequest banner(String banner) {
this.banner = banner;
return this;
}
/**
* Link to the banner
* @return banner
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "https://.cdn.ziqni.com/_id/", value = "Link to the banner")
@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 CreateCompetitionRequest bannerLowResolution(String bannerLowResolution) {
this.bannerLowResolution = bannerLowResolution;
return this;
}
/**
* Link to the bannerLowResolution
* @return bannerLowResolution
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "https://.cdn.ziqni.com/_id/", value = "Link to the bannerLowResolution")
@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 CreateCompetitionRequest bannerHighResolution(String bannerHighResolution) {
this.bannerHighResolution = bannerHighResolution;
return this;
}
/**
* Link to the bannerHighResolution
* @return bannerHighResolution
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "https://.cdn.ziqni.com/_id/", value = "Link to the bannerHighResolution")
@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;
}
/**
* Return true if this CreateCompetitionRequest object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateCompetitionRequest createCompetitionRequest = (CreateCompetitionRequest) o;
return Objects.equals(this.customFields, createCompetitionRequest.customFields) &&
Objects.equals(this.tags, createCompetitionRequest.tags) &&
Objects.equals(this.metadata, createCompetitionRequest.metadata) &&
Objects.equals(this.competitionType, createCompetitionRequest.competitionType) &&
Objects.equals(this.numberOfRounds, createCompetitionRequest.numberOfRounds) &&
Objects.equals(this.numberOfGroupStages, createCompetitionRequest.numberOfGroupStages) &&
Objects.equals(this.name, createCompetitionRequest.name) &&
Objects.equals(this.description, createCompetitionRequest.description) &&
Objects.equals(this.termsAndConditions, createCompetitionRequest.termsAndConditions) &&
Objects.equals(this.entrantMemberType, createCompetitionRequest.entrantMemberType) &&
Objects.equals(this.maxNumberOfEntrants, createCompetitionRequest.maxNumberOfEntrants) &&
Objects.equals(this.minNumberOfEntrants, createCompetitionRequest.minNumberOfEntrants) &&
Objects.equals(this.rules, createCompetitionRequest.rules) &&
Objects.equals(this.scheduledStartDate, createCompetitionRequest.scheduledStartDate) &&
Objects.equals(this.scheduledEndDate, createCompetitionRequest.scheduledEndDate) &&
Objects.equals(this.translations, createCompetitionRequest.translations) &&
Objects.equals(this.contests, createCompetitionRequest.contests) &&
Objects.equals(this.rewards, createCompetitionRequest.rewards) &&
Objects.equals(this.constraints, createCompetitionRequest.constraints) &&
Objects.equals(this.addConstraints, createCompetitionRequest.addConstraints) &&
Objects.equals(this.productIds, createCompetitionRequest.productIds) &&
Objects.equals(this.entrantMemberTagsFilter, createCompetitionRequest.entrantMemberTagsFilter) &&
Objects.equals(this.productTagsFilter, createCompetitionRequest.productTagsFilter) &&
Objects.equals(this.icon, createCompetitionRequest.icon) &&
Objects.equals(this.banner, createCompetitionRequest.banner) &&
Objects.equals(this.bannerLowResolution, createCompetitionRequest.bannerLowResolution) &&
Objects.equals(this.bannerHighResolution, createCompetitionRequest.bannerHighResolution);
}
@Override
public int hashCode() {
return Objects.hash(customFields, tags, metadata, competitionType, numberOfRounds, numberOfGroupStages, name, description, termsAndConditions, entrantMemberType, maxNumberOfEntrants, minNumberOfEntrants, rules, scheduledStartDate, scheduledEndDate, translations, contests, rewards, constraints, addConstraints, productIds, entrantMemberTagsFilter, productTagsFilter, icon, banner, bannerLowResolution, bannerHighResolution);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateCompetitionRequest {\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(" competitionType: ").append(toIndentedString(competitionType)).append("\n");
sb.append(" numberOfRounds: ").append(toIndentedString(numberOfRounds)).append("\n");
sb.append(" numberOfGroupStages: ").append(toIndentedString(numberOfGroupStages)).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(" entrantMemberType: ").append(toIndentedString(entrantMemberType)).append("\n");
sb.append(" maxNumberOfEntrants: ").append(toIndentedString(maxNumberOfEntrants)).append("\n");
sb.append(" minNumberOfEntrants: ").append(toIndentedString(minNumberOfEntrants)).append("\n");
sb.append(" rules: ").append(toIndentedString(rules)).append("\n");
sb.append(" scheduledStartDate: ").append(toIndentedString(scheduledStartDate)).append("\n");
sb.append(" scheduledEndDate: ").append(toIndentedString(scheduledEndDate)).append("\n");
sb.append(" translations: ").append(toIndentedString(translations)).append("\n");
sb.append(" contests: ").append(toIndentedString(contests)).append("\n");
sb.append(" rewards: ").append(toIndentedString(rewards)).append("\n");
sb.append(" constraints: ").append(toIndentedString(constraints)).append("\n");
sb.append(" addConstraints: ").append(toIndentedString(addConstraints)).append("\n");
sb.append(" productIds: ").append(toIndentedString(productIds)).append("\n");
sb.append(" entrantMemberTagsFilter: ").append(toIndentedString(entrantMemberTagsFilter)).append("\n");
sb.append(" productTagsFilter: ").append(toIndentedString(productTagsFilter)).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("}");
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