Class ConnectCustomFieldValue

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

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

    • _type

      The type of custom field.
    • fieldID

      protected Integer fieldID
      The custom field ID.
    • issueID

      protected Integer issueID
      The issue ID.
    • number

      protected BigDecimal number
      The value of number type custom field when _type is NumberIssueField.
    • optionID

      protected String optionID
      The value of single select and multiselect custom field type when _type is SingleSelectIssueField or MultiSelectIssueField.
    • richText

      protected String richText
      The value of richText type custom field when _type is RichTextIssueField.
    • string

      protected String string
      The value of string type custom field when _type is StringIssueField.
    • text

      protected String text
      The value of of text custom field type when _type is TextIssueField.
  • Constructor Details

    • ConnectCustomFieldValue

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

      @Internal public ConnectCustomFieldValue(ConnectCustomFieldValue.TypeEnum _type, Integer fieldID, Integer issueID, BigDecimal number, String optionID, String richText, String string, String text)
      Constructs a validated instance of ConnectCustomFieldValue.

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

      Parameters:
      _type - The type of custom field.
      fieldID - The custom field ID.
      issueID - The issue ID.
      number - The value of number type custom field when _type is NumberIssueField.
      optionID - The value of single select and multiselect custom field type when _type is SingleSelectIssueField or MultiSelectIssueField.
      richText - The value of richText type custom field when _type is RichTextIssueField.
      string - The value of string type custom field when _type is StringIssueField.
      text - The value of of text custom field type when _type is TextIssueField.
    • ConnectCustomFieldValue

      protected ConnectCustomFieldValue()
  • Method Details