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 ClickUp4jReturns thisClickUp4jinstance.@NotNull OffsetDateTimegetDate()Returns the date of the attachment.@NotNull StringReturns the file extension of the attachment.@NotNull StringgetId()The ID of the attachment.@NotNull StringgetTitle()Returns the name of the attachment.@NotNull StringgetUrl()Returns the URL for the attachment.@NotNull StringThe 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 thisClickUp4jinstance.- Returns:
 - never-null 
ClickUp4jinstance. 
 
 -