Class CustomFieldContext

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

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

    • description

      protected String description
      The description of the context.
    • id

      protected String id
      The ID of the context.
    • isAnyIssueType

      protected Boolean isAnyIssueType
      Whether the context apply to all issue types.
    • isGlobalContext

      protected Boolean isGlobalContext
      Whether the context is global.
    • name

      protected String name
      The name of the context.
  • Constructor Details

    • CustomFieldContext

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

      @Internal public CustomFieldContext(String description, String id, Boolean isAnyIssueType, Boolean isGlobalContext, String name)
      Constructs a validated instance of CustomFieldContext.

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

      Parameters:
      description - The description of the context.
      id - The ID of the context.
      isAnyIssueType - Whether the context apply to all issue types.
      isGlobalContext - Whether the context is global.
      name - The name of the context.
    • CustomFieldContext

      protected CustomFieldContext()
  • Method Details