Note

Description

The Note type holds information about a note. The Note type parameters are listed below.

Parameters

Name Type Description
id integer This is the internal TS_ID of the note from the TS_ATTACHMENTS table.
title string The title of the note.
note string The text of the note.
author UserIdentifier The author of the note.
modificationDateTime dateTime The date and time when the note was last modified. See Supported Date/Time Formats for more information.
accessType Attachment-Access-Type Shows the access type for the note. The value is either DEFAULT, RESTRICTED, or UNRESTRICTED.
extendedData ExtendedData Placeholder for future arguments.

Usage

The note title is limited to 255 unicode characters. The note body is limited to 65,535 characters.

XML

The following XML snippet shows the Note type in the <urn:note> parameter of TTItem.

<urn:note>
    <urn:id>54</urn:id>
    <urn:title>Attention</urn:title>
    <urn:note>This is a note</urn:note>
    <urn:author>
        <urn:displayName>Administrator</urn:displayName>
        <urn:id>8</urn:id>
        <urn:uuid>9f9146a3-a273-4411-8000-8396688b7554</urn:uuid>
        <urn:loginId>admin</urn:loginId>
    </urn:author>
    <urn:modificationDateTime>2008-03-11T22:17:15-07:00
    </urn:modificationDateTime>
    <urn:accessType>ATTACHACCESS-DEFAULT</urn:accessType>
    <urn:extendedData>
        <urn:data>
            <urn:name></urn:name>
            <urn:value></urn:value>
        </urn:data>
    </urn:extendedData>
</urn:note>