io.github.primelib.jira4j.restv2.model.ReorderIssueResolutionsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jira4j-rest-v2 Show documentation
Show all versions of jira4j-rest-v2 Show documentation
A Java Wrapper for the Jira REST API
The newest version!
package io.github.primelib.jira4j.restv2.model;
import java.util.function.Consumer;
import org.jetbrains.annotations.ApiStatus;
import javax.annotation.processing.Generated;
import lombok.AccessLevel;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* ReorderIssueResolutionsRequest
*
*/
@Getter
@Setter
@EqualsAndHashCode
@ToString
@Accessors(fluent = true, chain = true)
@NoArgsConstructor(access = AccessLevel.PROTECTED, force = true)
@Builder
@JsonPropertyOrder({
"after",
"ids",
"position"
})
@JsonTypeName("ReorderIssueResolutionsRequest")
@Generated(value = "io.github.primelib.primecodegen.javafeign.JavaFeignGenerator")
public class ReorderIssueResolutionsRequest {
/**
* The ID of the resolution. Required if {@code position} isn't provided.
*/
@JsonProperty("after")
protected String after;
/**
* The list of resolution IDs to be reordered. Cannot contain duplicates nor after ID.
*/
@JsonProperty("ids")
protected List ids;
/**
* The position for issue resolutions to be moved to. Required if {@code after} isn't provided.
*/
@JsonProperty("position")
protected String position;
/**
* Constructs a validated instance of {@link ReorderIssueResolutionsRequest}.
*
* @param spec the specification to process
*/
public ReorderIssueResolutionsRequest(Consumer spec) {
spec.accept(this);
}
/**
* Constructs a validated instance of {@link ReorderIssueResolutionsRequest}.
*
* NOTE: This constructor is not considered stable and may change if the model is updated. Consider using {@link #ReorderIssueResolutionsRequest(Consumer)} instead.
* @param after The ID of the resolution. Required if {@code position} isn't provided.
* @param ids The list of resolution IDs to be reordered. Cannot contain duplicates nor after ID.
* @param position The position for issue resolutions to be moved to. Required if {@code after} isn't provided.
*/
@ApiStatus.Internal
public ReorderIssueResolutionsRequest(String after, List ids, String position) {
this.after = after;
this.ids = ids;
this.position = position;
}
}