Class UpdateReportColumnRequest


  • public class UpdateReportColumnRequest
    extends java.lang.Object
    Represents the request body for updating a report column. Used with PUT /reports/{reportId}/columns/{columnVirtualId}.
    • Constructor Detail

      • UpdateReportColumnRequest

        public UpdateReportColumnRequest()
    • Method Detail

      • getTitle

        public java.lang.String getTitle()
        Gets the title.
        Returns:
        the title
      • setTitle

        public UpdateReportColumnRequest setTitle​(java.lang.String title)
        Sets the title.
        Parameters:
        title - the title
        Returns:
        this UpdateReportColumnRequest for chaining
      • getIndex

        public java.lang.Integer getIndex()
        Gets the index.
        Returns:
        the index
      • setIndex

        public UpdateReportColumnRequest setIndex​(java.lang.Integer index)
        Sets the index.
        Parameters:
        index - the index
        Returns:
        this UpdateReportColumnRequest for chaining
      • getHidden

        public java.lang.Boolean getHidden()
        Gets whether the column is hidden.
        Returns:
        hidden flag
      • setHidden

        public UpdateReportColumnRequest setHidden​(java.lang.Boolean hidden)
        Sets whether the column is hidden.
        Parameters:
        hidden - the hidden flag
        Returns:
        this UpdateReportColumnRequest for chaining
      • getWidth

        public java.lang.Integer getWidth()
        Gets the width.
        Returns:
        the width
      • setWidth

        public UpdateReportColumnRequest setWidth​(java.lang.Integer width)
        Sets the width.
        Parameters:
        width - the width (minimum 1)
        Returns:
        this UpdateReportColumnRequest for chaining