Notes
albert.resources.notes
NoteAttachmentEntityLink
Bases: EntityLink
Entity link for a note attachment w/ an optional signed download URL.
Attributes:
Name | Type | Description |
---|---|---|
signed_url |
str | None
|
|
Note
Bases: BaseResource
Represents a Note on the Albert Platform. Users can be mentioned in notes by using f-string and the User.to_note_mention() method. This allows for easy tagging and referencing of users within notes. example: f"Hello {tagged_user.to_note_mention()}!"
Attributes:
Name | Type | Description |
---|---|---|
parent_id |
str
|
|
note |
str
|
|
id |
str | None
|
|
attachments |
list[NoteAttachmentEntityLink] | None
|
|
attachments
attachments: list[NoteAttachmentEntityLink] | None = Field(
default=None,
exclude=True,
frozen=True,
alias="Attachments",
)