Package com.smartsheet.api.models
Class UpdateRequest
- java.lang.Object
-
- com.smartsheet.api.models.Email
-
- com.smartsheet.api.models.RowEmail
-
- com.smartsheet.api.models.MultiRowEmail
-
- com.smartsheet.api.models.UpdateRequest
-
public class UpdateRequest extends MultiRowEmail
Represents the UpdateRequest object.- See Also:
- Using Update Request Help
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.smartsheet.api.models.MultiRowEmail
MultiRowEmail.AddMultiRowEmailBuilder
-
Nested classes/interfaces inherited from class com.smartsheet.api.models.RowEmail
RowEmail.AddRowEmailBuilder
-
-
Constructor Summary
Constructors Constructor Description UpdateRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Date
getCreatedAt()
Gets the date and time for when this request was originally created.java.lang.Long
getId()
Get the Id of the update request.java.util.Date
getModifiedAt()
Get the date and time for when the last change was made to this request.Schedule
getSchedule()
Gets the schedule for which update requests will be sent out.User
getSentBy()
Gets the User object containing the name and email of the senderUpdateRequest
setCreatedAt(java.util.Date createdAt)
Sets the date and time for when this request was originally created.UpdateRequest
setId(java.lang.Long id)
Set the Id of the update request.UpdateRequest
setModifiedAt(java.util.Date modifiedAt)
Set the date and time for when the last change was made to this request.UpdateRequest
setSchedule(Schedule schedule)
Sets the schedule for which update requests will be sent out.UpdateRequest
setSentBy(User sentBy)
Sets the User object containing the name and email of the sender-
Methods inherited from class com.smartsheet.api.models.MultiRowEmail
getRowIds, setRowIds
-
Methods inherited from class com.smartsheet.api.models.RowEmail
getCcMe, getColumnIds, getIncludeAttachments, getIncludeDiscussions, getLayout, getMessage, getSendTo, getSubject, setCcMe, setColumnIds, setIncludeAttachments, setIncludeDiscussions, setLayout, setMessage, setSendTo, setSubject
-
-
-
-
Method Detail
-
getId
public java.lang.Long getId()
Get the Id of the update request.- Returns:
- id
-
setId
public UpdateRequest setId(java.lang.Long id)
Set the Id of the update request.
-
getSentBy
public User getSentBy()
Gets the User object containing the name and email of the sender- Returns:
- sentBy
-
setSentBy
public UpdateRequest setSentBy(User sentBy)
Sets the User object containing the name and email of the sender
-
getSchedule
public Schedule getSchedule()
Gets the schedule for which update requests will be sent out.- Returns:
- schedule
-
setSchedule
public UpdateRequest setSchedule(Schedule schedule)
Sets the schedule for which update requests will be sent out.
-
getCreatedAt
public java.util.Date getCreatedAt()
Gets the date and time for when this request was originally created.- Returns:
- createdAt
-
setCreatedAt
public UpdateRequest setCreatedAt(java.util.Date createdAt)
Sets the date and time for when this request was originally created.
-
getModifiedAt
public java.util.Date getModifiedAt()
Get the date and time for when the last change was made to this request.- Returns:
- modifiedAt
-
setModifiedAt
public UpdateRequest setModifiedAt(java.util.Date modifiedAt)
Set the date and time for when the last change was made to this request.
-
-