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.BooleangetIncludeAttachments()Gets the flag that indicates if attachments should be included in the email.java.lang.BooleangetIncludeDiscussions()Gets the flag that indicates if discussions should be included in the email.java.lang.StringgetMessage()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.DategetSentAt()Get the date and time for when the update request was sentUsergetSentBy()Get the User object containing the name and email of the sender.RecipientgetSentTo()Gets the recipientUpdateRequestStatusgetStatus()Get the status of the sent update request.java.lang.StringgetSubject()Gets the subjectjava.lang.LonggetUpdateRequestId()Get the Id of the originating update request.SentUpdateRequestsetColumnIds(java.util.List<java.lang.Long> columnIds)Set the Ids of the columns included in the request.SentUpdateRequestsetIncludeAttachments(java.lang.Boolean includeAttachments)Sets the flag that indicates if attachments should be included in the email.SentUpdateRequestsetIncludeDiscussions(java.lang.Boolean includeDiscussions)Sets the flag that indicates if discussions should be included in the email.SentUpdateRequestsetMessage(java.lang.String message)Sets the email message.SentUpdateRequestsetRowIds(java.util.List<java.lang.Long> rowIds)Set the Ids of the rows for which the update is request.SentUpdateRequestsetSentAt(java.util.Date sentAt)Set the date and time for when the update request was sentSentUpdateRequestsetSentBy(User sentBy)Set the User object containing the name and email of the sender.SentUpdateRequestsetSentTo(Recipient sentTo)Sets the recipientSentUpdateRequestsetStatus(UpdateRequestStatus status)Set the status of the sent update request.SentUpdateRequestsetSubject(java.lang.String subject)Sets the subjectSentUpdateRequestsetUpdateRequestId(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.
-
-