io.github.primelib.jira4j.restv3.spec.GetFailedWebhooksOperationSpec Maven / Gradle / Ivy
Show all versions of jira4j-rest-v3 Show documentation
package io.github.primelib.jira4j.restv3.spec;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.Nullable;
import javax.annotation.processing.Generated;
import io.github.primelib.jira4j.restv3.model.FailedWebhooks;
import java.util.Set;
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.function.Consumer;
/**
* GetFailedWebhooksSpec
*
* Specification for the GetFailedWebhooks operation.
*
* Get failed webhooks
*/
@Getter
@Setter
@EqualsAndHashCode
@ToString
@Accessors(fluent = true, chain = true)
@NoArgsConstructor(access = AccessLevel.PROTECTED, force = true)
@Builder
@Generated(value = "io.github.primelib.primecodegen.javafeign.JavaFeignGenerator")
public class GetFailedWebhooksOperationSpec {
/**
* allows to disable validation of the spec, use with care!
*/
@ApiStatus.Experimental
public static Boolean VALIDATION_ENABLED = true;
/**
* The maximum number of webhooks to return per page. If obeying the maxResults directive would result in records with the same failure time being split across pages, the directive is ignored and all records with the same failure time included on the page.
*/
@Nullable
private Integer maxResults;
/**
* The time after which any webhook failure must have occurred for the record to be returned, expressed as milliseconds since the UNIX epoch.
*/
@Nullable
private Long after;
/**
* Constructs a validated instance of {@link GetFailedWebhooksOperationSpec}.
*
* @param spec the specification to process
*/
@ApiStatus.Internal
public GetFailedWebhooksOperationSpec(Consumer spec) {
spec.accept(this);
if (VALIDATION_ENABLED)
validate();
}
/**
* Constructs a validated instance of {@link GetFailedWebhooksOperationSpec}.
*
* NOTE: This constructor is not considered stable and may change if the operation is updated.
* @param maxResults The maximum number of webhooks to return per page. If obeying the maxResults directive would result in records with the same failure time being split across pages, the directive is ignored and all records with the same failure time included on the page.
* @param after The time after which any webhook failure must have occurred for the record to be returned, expressed as milliseconds since the UNIX epoch.
*/
@ApiStatus.Internal
public GetFailedWebhooksOperationSpec(Integer maxResults, Long after) {
this.maxResults = maxResults;
this.after = after;
if (VALIDATION_ENABLED)
validate();
}
/**
* Validates the Spec, will throw a exception if required parameters are missing
*
* @throws NullPointerException
*/
public void validate() {
}
}