Class FailedWebhooks

java.lang.Object
io.github.primelib.jira4j.restv3.model.FailedWebhooks

@Generated("io.github.primelib.primecodegen.javafeign.JavaFeignGenerator") public class FailedWebhooks extends Object
FailedWebhooks
  • Field Details

    • maxResults

      protected Integer maxResults
      The maximum number of items on the page. If the list of values is shorter than this number, then there are no more pages.
    • next

      protected URI next
      The URL to the next page of results. Present only if the request returned at least one result.The next page may be empty at the time of receiving the response, but new failed webhooks may appear in time. You can save the URL to the next page and query for new results periodically (for example, every hour).
    • values

      protected List<FailedWebhook> values
      The list of webhooks.
  • Constructor Details

    • FailedWebhooks

      public FailedWebhooks(Consumer<FailedWebhooks> spec)
      Constructs a validated instance of FailedWebhooks.
      Parameters:
      spec - the specification to process
    • FailedWebhooks

      @Internal public FailedWebhooks(Integer maxResults, URI next, List<FailedWebhook> values)
      Constructs a validated instance of FailedWebhooks.

      NOTE: This constructor is not considered stable and may change if the model is updated. Consider using FailedWebhooks(Consumer) instead.

      Parameters:
      maxResults - The maximum number of items on the page. If the list of values is shorter than this number, then there are no more pages.
      next - The URL to the next page of results. Present only if the request returned at least one result.The next page may be empty at the time of receiving the response, but new failed webhooks may appear in time. You can save the URL to the next page and query for new results periodically (for example, every hour).
      values - The list of webhooks.
    • FailedWebhooks

      protected FailedWebhooks()
  • Method Details

    • builder

      public static FailedWebhooks.FailedWebhooksBuilder builder()
    • maxResults

      public Integer maxResults()
      The maximum number of items on the page. If the list of values is shorter than this number, then there are no more pages.
    • next

      public URI next()
      The URL to the next page of results. Present only if the request returned at least one result.The next page may be empty at the time of receiving the response, but new failed webhooks may appear in time. You can save the URL to the next page and query for new results periodically (for example, every hour).
    • values

      public List<FailedWebhook> values()
      The list of webhooks.
    • maxResults

      public FailedWebhooks maxResults(Integer maxResults)
      The maximum number of items on the page. If the list of values is shorter than this number, then there are no more pages.
      Returns:
      this.
    • next

      public FailedWebhooks next(URI next)
      The URL to the next page of results. Present only if the request returned at least one result.The next page may be empty at the time of receiving the response, but new failed webhooks may appear in time. You can save the URL to the next page and query for new results periodically (for example, every hour).
      Returns:
      this.
    • values

      public FailedWebhooks values(List<FailedWebhook> values)
      The list of webhooks.
      Returns:
      this.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • canEqual

      protected boolean canEqual(Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object