Package com.zendesk.sdk.model.request
Class EndUserComment
- java.lang.Object
- 
- com.zendesk.sdk.model.request.EndUserComment
 
- 
 
 public class EndUserComment extends java.lang.ObjectEndUserComment object is used to model the difference the API for updating a Request has with fetching a list of Comments for a given request. Note: This should only be used for the creation of comments.
- 
- 
Constructor SummaryConstructors Constructor and Description EndUserComment()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.util.List<java.lang.String>getAttachments()Gets the attachments for this comment.voidsetAttachments(java.util.List<java.lang.String> attachments)Sets the attachments for this commentvoidsetValue(java.lang.String value)Sets the value of this comment, e.g.
 
- 
- 
- 
Method Detail- 
setValuepublic void setValue(java.lang.String value) Sets the value of this comment, e.g. "My printer is on fire"- Parameters:
- value- the value of the comment to set
 
 - 
getAttachmentspublic java.util.List<java.lang.String> getAttachments() Gets the attachments for this comment.This returns a copy of the attachments. If you want to set them then use EndUserComment.setAttachments(List)- Returns:
- The attachments for this comment
 
 - 
setAttachmentspublic void setAttachments(java.util.List<java.lang.String> attachments) Sets the attachments for this comment- Parameters:
- attachments- the attachments to set
 
 
- 
 
-