Package pw.chew.clickup4j.api.entities
Interface Attachment
- All Known Implementing Classes:
AttachmentImpl
public interface Attachment
Attachment
Attachments can be uploaded to Tasks to help share information.-
Method Summary
Modifier and TypeMethodDescription@NotNull ClickUp4j
Returns thisClickUp4j
instance.@NotNull OffsetDateTime
getDate()
Returns the date of the attachment.@NotNull String
Returns the file extension of the attachment.@NotNull String
getId()
The ID of the attachment.@NotNull String
getTitle()
Returns the name of the attachment.@NotNull String
getUrl()
Returns the URL for the attachment.@NotNull String
The version of the attachment.
-
Method Details
-
getId
The ID of the attachment.- Returns:
- never-null ID of the attachment.
-
getVersion
The version of the attachment.- Returns:
- never-null version of the attachment.
-
getDate
Returns the date of the attachment.
Presumably this is when it was uploaded.- Returns:
- never-null date of the attachment.
-
getTitle
Returns the name of the attachment.- Returns:
- never-null name of the attachment.
-
getExtension
Returns the file extension of the attachment.- Returns:
- never-null file extension of the attachment.
-
getUrl
Returns the URL for the attachment.- Returns:
- never-null URL for the attachment.
-
getClickUp4j
Returns thisClickUp4j
instance.- Returns:
- never-null
ClickUp4j
instance.
-