Interface Attachment

All Known Implementing Classes:
AttachmentImpl

public interface Attachment

Attachment

Attachments can be uploaded to Tasks to help share information.
  • Method Details

    • getId

      @NotNull @NotNull String getId()
      The ID of the attachment.
      Returns:
      never-null ID of the attachment.
    • getVersion

      @NotNull @NotNull String getVersion()
      The version of the attachment.
      Returns:
      never-null version of the attachment.
    • getDate

      @NotNull @NotNull OffsetDateTime getDate()
      Returns the date of the attachment.
      Presumably this is when it was uploaded.
      Returns:
      never-null date of the attachment.
    • getTitle

      @NotNull @NotNull String getTitle()
      Returns the name of the attachment.
      Returns:
      never-null name of the attachment.
    • getExtension

      @NotNull @NotNull String getExtension()
      Returns the file extension of the attachment.
      Returns:
      never-null file extension of the attachment.
    • getUrl

      @NotNull @NotNull String getUrl()
      Returns the URL for the attachment.
      Returns:
      never-null URL for the attachment.
    • getClickUp4j

      @NotNull @NotNull ClickUp4j getClickUp4j()
      Returns this ClickUp4j instance.
      Returns:
      never-null ClickUp4j instance.