io.github.primelib.jira4j.restv3.model.IssueUpdateDetails Maven / Gradle / Ivy
Show all versions of jira4j-rest-v3 Show documentation
package io.github.primelib.jira4j.restv3.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 java.util.Map;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* IssueUpdateDetails
*
*/
@Getter
@Setter
@EqualsAndHashCode
@ToString
@Accessors(fluent = true, chain = true)
@NoArgsConstructor(access = AccessLevel.PROTECTED, force = true)
@Builder
@JsonPropertyOrder({
"fields",
"historyMetadata",
"properties",
"transition",
"update"
})
@JsonTypeName("IssueUpdateDetails")
@Generated(value = "io.github.primelib.primecodegen.javafeign.JavaFeignGenerator")
public class IssueUpdateDetails {
/**
* List of issue screen fields to update, specifying the sub-field to update and its value for each field. This field provides a straightforward option when setting a sub-field. When multiple sub-fields or other operations are required, use {@code update}. Fields included in here cannot be included in {@code update}.
*/
@JsonProperty("fields")
protected Map fields;
@JsonProperty("historyMetadata")
protected HistoryMetadata historyMetadata;
/**
* Details of issue properties to be add or update.
*/
@JsonProperty("properties")
protected List properties;
@JsonProperty("transition")
protected IssueTransition transition;
/**
* A Map containing the field field name and a list of operations to perform on the issue screen field. Note that fields included in here cannot be included in {@code fields}.
*/
@JsonProperty("update")
protected Map> update;
/**
* Constructs a validated instance of {@link IssueUpdateDetails}.
*
* @param spec the specification to process
*/
public IssueUpdateDetails(Consumer spec) {
spec.accept(this);
}
/**
* Constructs a validated instance of {@link IssueUpdateDetails}.
*
* NOTE: This constructor is not considered stable and may change if the model is updated. Consider using {@link #IssueUpdateDetails(Consumer)} instead.
* @param fields List of issue screen fields to update, specifying the sub-field to update and its value for each field. This field provides a straightforward option when setting a sub-field. When multiple sub-fields or other operations are required, use {@code update}. Fields included in here cannot be included in {@code update}.
* @param historyMetadata historyMetadata
* @param properties Details of issue properties to be add or update.
* @param transition transition
* @param update A Map containing the field field name and a list of operations to perform on the issue screen field. Note that fields included in here cannot be included in {@code fields}.
*/
@ApiStatus.Internal
public IssueUpdateDetails(Map fields, HistoryMetadata historyMetadata, List properties, IssueTransition transition, Map> update) {
this.fields = fields;
this.historyMetadata = historyMetadata;
this.properties = properties;
this.transition = transition;
this.update = update;
}
}