Class UpdateUiModificationDetails

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

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

    • contexts

      protected List<UiModificationContextDetails> contexts
      List of contexts of the UI modification. The maximum number of contexts is 1000. If provided, replaces all existing contexts.
    • data

      protected String data
      The data of the UI modification. The maximum size of the data is 50000 characters.
    • description

      protected String description
      The description of the UI modification. The maximum length is 255 characters.
    • name

      protected String name
      The name of the UI modification. The maximum length is 255 characters.
  • Constructor Details

    • UpdateUiModificationDetails

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

      @Internal public UpdateUiModificationDetails(List<UiModificationContextDetails> contexts, String data, String description, String name)
      Constructs a validated instance of UpdateUiModificationDetails.

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

      Parameters:
      contexts - List of contexts of the UI modification. The maximum number of contexts is 1000. If provided, replaces all existing contexts.
      data - The data of the UI modification. The maximum size of the data is 50000 characters.
      description - The description of the UI modification. The maximum length is 255 characters.
      name - The name of the UI modification. The maximum length is 255 characters.
    • UpdateUiModificationDetails

      protected UpdateUiModificationDetails()
  • Method Details