Package com.smartsheet.api.models
Class SentUpdateRequest
- java.lang.Object
-
- com.smartsheet.api.models.IdentifiableModel<java.lang.Long>
-
- com.smartsheet.api.models.SentUpdateRequest
-
public class SentUpdateRequest extends IdentifiableModel<java.lang.Long>
-
-
Constructor Summary
Constructors Constructor Description SentUpdateRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.Long>
getColumnIds()
Get the Ids of the columns included in the request.java.lang.Boolean
getIncludeAttachments()
Gets the flag that indicates if attachments should be included in the email.java.lang.Boolean
getIncludeDiscussions()
Gets the flag that indicates if discussions should be included in the email.java.lang.String
getMessage()
Gets the email message.java.util.List<java.lang.Long>
getRowIds()
Get the Ids of the rows for which the update is requested.java.util.Date
getSentAt()
Get the date and time for when the update request was sentUser
getSentBy()
Get the User object containing the name and email of the sender.Recipient
getSentTo()
Gets the recipientUpdateRequestStatus
getStatus()
Get the status of the sent update request.java.lang.String
getSubject()
Gets the subjectjava.lang.Long
getUpdateRequestId()
Get the Id of the originating update request.SentUpdateRequest
setColumnIds(java.util.List<java.lang.Long> columnIds)
Set the Ids of the columns included in the request.SentUpdateRequest
setIncludeAttachments(java.lang.Boolean includeAttachments)
Sets the flag that indicates if attachments should be included in the email.SentUpdateRequest
setIncludeDiscussions(java.lang.Boolean includeDiscussions)
Sets the flag that indicates if discussions should be included in the email.SentUpdateRequest
setMessage(java.lang.String message)
Sets the email message.SentUpdateRequest
setRowIds(java.util.List<java.lang.Long> rowIds)
Set the Ids of the rows for which the update is request.SentUpdateRequest
setSentAt(java.util.Date sentAt)
Set the date and time for when the update request was sentSentUpdateRequest
setSentBy(User sentBy)
Set the User object containing the name and email of the sender.SentUpdateRequest
setSentTo(Recipient sentTo)
Sets the recipientSentUpdateRequest
setStatus(UpdateRequestStatus status)
Set the status of the sent update request.SentUpdateRequest
setSubject(java.lang.String subject)
Sets the subjectSentUpdateRequest
setUpdateRequestId(java.lang.Long updateRequestId)
Set the Id of the originating update request.-
Methods inherited from class com.smartsheet.api.models.IdentifiableModel
equals, getId, hashCode, setId
-
-
-
-
Method Detail
-
getUpdateRequestId
public java.lang.Long getUpdateRequestId()
Get the Id of the originating update request.- Returns:
- updateRequestId
-
setUpdateRequestId
public SentUpdateRequest setUpdateRequestId(java.lang.Long updateRequestId)
Set the Id of the originating update request.
-
getSentAt
public java.util.Date getSentAt()
Get the date and time for when the update request was sent- Returns:
- sentAt
-
setSentAt
public SentUpdateRequest setSentAt(java.util.Date sentAt)
Set the date and time for when the update request was sent
-
getSentBy
public User getSentBy()
Get the User object containing the name and email of the sender.- Returns:
- sentBy
-
setSentBy
public SentUpdateRequest setSentBy(User sentBy)
Set the User object containing the name and email of the sender.
-
getStatus
public UpdateRequestStatus getStatus()
Get the status of the sent update request.- Returns:
- status
-
setStatus
public SentUpdateRequest setStatus(UpdateRequestStatus status)
Set the status of the sent update request.
-
getRowIds
public java.util.List<java.lang.Long> getRowIds()
Get the Ids of the rows for which the update is requested.- Returns:
- rowIds
-
setRowIds
public SentUpdateRequest setRowIds(java.util.List<java.lang.Long> rowIds)
Set the Ids of the rows for which the update is request.
-
getColumnIds
public java.util.List<java.lang.Long> getColumnIds()
Get the Ids of the columns included in the request.- Returns:
- columnIds
-
setColumnIds
public SentUpdateRequest setColumnIds(java.util.List<java.lang.Long> columnIds)
Set the Ids of the columns included in the request.
-
getIncludeAttachments
public java.lang.Boolean getIncludeAttachments()
Gets the flag that indicates if attachments should be included in the email.- Returns:
- includeAttachments
-
setIncludeAttachments
public SentUpdateRequest setIncludeAttachments(java.lang.Boolean includeAttachments)
Sets the flag that indicates if attachments should be included in the email.
-
getIncludeDiscussions
public java.lang.Boolean getIncludeDiscussions()
Gets the flag that indicates if discussions should be included in the email.- Returns:
- includeDiscussions
-
setIncludeDiscussions
public SentUpdateRequest setIncludeDiscussions(java.lang.Boolean includeDiscussions)
Sets the flag that indicates if discussions should be included in the email.
-
getSentTo
public Recipient getSentTo()
Gets the recipient- Returns:
- sentTo
-
setSentTo
public SentUpdateRequest setSentTo(Recipient sentTo)
Sets the recipient
-
getSubject
public java.lang.String getSubject()
Gets the subject- Returns:
- subject
-
setSubject
public SentUpdateRequest setSubject(java.lang.String subject)
Sets the subject
-
getMessage
public java.lang.String getMessage()
Gets the email message.- Returns:
- message
-
setMessage
public SentUpdateRequest setMessage(java.lang.String message)
Sets the email message.
-
-