public class TTApiNote
extends java.lang.Object
TTNote has the following elements:
id
- title
- parentId
- content
- author
- createDate
- modifyDate
-
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://services" xmlns:xsd="http://objects.services/xsd">
<soapenv:Header/>
<soapenv:Body>
<ser:getEntityNotes>
<ser:sessionId>91253ba1-ee1e-4fbd-8eb6-26ecddb3cb44</ser:sessionId>
<ser:entityTypeId>4</ser:entityTypeId>
<ser:entityId>1638654057</ser:entityId>
<ser:noteTypeId>65</ser:noteTypeId>
</ser:getEntityNotes>
</soapenv:Body>
</soapenv:Envelope>
Response
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:getEntityNotesResponse xmlns:ns="http://services" xmlns:ax21="http://objects.services/xsd">
<ns:return xsi:type="ax21:EntityObj" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ax21:entityTypeId>4</ax21:entityTypeId>
<ax21:entityId>1638654057</ax21:entityId>
<ax21:noteTypeId>65</ax21:noteTypeId>
<ax21:Note xsi:type="ax21:Note">
<ax21:id>XXXX</ax21:id>
<ax21:title>Top level Note 1</ax21:title>
<ax21:parentId>XXXX{ProjectId}</ax21:parentId>
<ax21:content>Test content</ax21:content>
<ax21:author>User,Admin</ax21:author>
<ax21:createDate>2016-02-10T17:11:38Z</ax21:createDate>
<ax21:modifyDate>2016-02-10T17:11:38Z</ax21:modifyDate>
<ax21:Note xsi:type="ax21:Note">
<ax21:id>XXXX</ax21:id>
<ax21:title>Reply Note 1</ax21:title>
<ax21:parentId>XXXX{parent note Id}</ax21:parentId>
<ax21:content>Test content</ax21:content>
<ax21:author>User,Admin</ax21:author>
<ax21:createDate>2016-02-10T17:11:38Z</ax21:createDate>
<ax21:modifyDate>2016-02-10T17:11:38Z</ax21:modifyDate>
</ax21:Note>
<ax21:Note xsi:type="ax21:Note">
<ax21:id>XXXX</ax21:id>
<ax21:title>Reply Note 2</ax21:title>
<ax21:parentId>XXXX{parent note Id}</ax21:parentId>
<ax21:content>Test content</ax21:content>
<ax21:author>User,Admin</ax21:author>
<ax21:createDate>2016-02-10T17:11:38Z</ax21:createDate>
<ax21:modifyDate>2016-02-10T17:11:38Z</ax21:modifyDate>
<ax21:Note xsi:type="ax21:Note">
<ax21:id>XXXX</ax21:id>
<ax21:title>Reply to Reply Note 2</ax21:title>
<ax21:parentId>XXXX{parent note Id}</ax21:parentId>
<ax21:content>Test content</ax21:content>
<ax21:author>User,Admin</ax21:author>
<ax21:createDate>2016-02-10T17:11:38Z</ax21:createDate>
<ax21:modifyDate>2016-02-10T17:11:38Z</ax21:modifyDate>
</ax21:Note>
</ax21:Note>
</ax21:Note>
<ax21:Note xsi:type="ax21:Note">
<ax21:id>XXXX</ax21:id>
<ax21:title>Top level Note 2</ax21:title>
<ax21:parentId>XXXX{ProjectId Id}</ax21:parentId>
<ax21:content>Test content</ax21:content>
<ax21:author>User,Admin</ax21:author>
<ax21:createDate>2016-02-10T17:11:38Z</ax21:createDate>
<ax21:modifyDate>2016-02-10T17:11:38Z</ax21:modifyDate>
</ax21:Note>
</ns:return>
</ns:getEntityNotes>
</soapenv:Body>
</soapenv:Envelope>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAuthor() |
java.lang.String |
getContent() |
java.lang.String |
getCreateDate() |
java.lang.String |
getModifyDate() |
TTApiNote[] |
getNote() |
long |
getNoteId() |
long |
getParentId() |
long |
getParentTypeId() |
java.lang.String |
getTitle() |
OMElement |
serialize(OMFactory fac) |
void |
setAuthor(java.lang.String pAuthor) |
void |
setContent(java.lang.String pContent) |
void |
setCreateDate(java.lang.String pCreateDate) |
void |
setModifyDate(java.lang.String pModifyDate) |
void |
setNote(TTApiNote[] pNote) |
void |
setNoteId(long pNoteId) |
void |
setParentId(long pParentId) |
void |
setParentTypeId(long pParentTypeId) |
void |
setTitle(java.lang.String pTitle) |
public java.lang.String getAuthor()
public void setAuthor(java.lang.String pAuthor)
public java.lang.String getContent()
public void setContent(java.lang.String pContent)
public java.lang.String getCreateDate()
public void setCreateDate(java.lang.String pCreateDate)
public java.lang.String getModifyDate()
public void setModifyDate(java.lang.String pModifyDate)
public long getParentId()
public void setParentId(long pParentId)
public long getParentTypeId()
public void setParentTypeId(long pParentTypeId)
public long getNoteId()
public void setNoteId(long pNoteId)
public java.lang.String getTitle()
public void setTitle(java.lang.String pTitle)
public TTApiNote[] getNote()
public void setNote(TTApiNote[] pNote)
public OMElement serialize(OMFactory fac)