Class PageBeanScreenScheme

java.lang.Object
io.github.primelib.jira4j.restv2.model.PageBeanScreenScheme

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

    • isLast

      protected Boolean isLast
      Whether this is the last page.
    • maxResults

      protected Integer maxResults
      The maximum number of items that could be returned.
    • nextPage

      protected URI nextPage
      If there is another page of results, the URL of the next page.
    • self

      protected URI self
      The URL of the page.
    • startAt

      protected Long startAt
      The index of the first item returned.
    • total

      protected Long total
      The number of items returned.
    • values

      protected List<ScreenScheme> values
      The list of items.
  • Constructor Details

    • PageBeanScreenScheme

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

      @Internal public PageBeanScreenScheme(Boolean isLast, Integer maxResults, URI nextPage, URI self, Long startAt, Long total, List<ScreenScheme> values)
      Constructs a validated instance of PageBeanScreenScheme.

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

      Parameters:
      isLast - Whether this is the last page.
      maxResults - The maximum number of items that could be returned.
      nextPage - If there is another page of results, the URL of the next page.
      self - The URL of the page.
      startAt - The index of the first item returned.
      total - The number of items returned.
      values - The list of items.
    • PageBeanScreenScheme

      protected PageBeanScreenScheme()
  • Method Details