Table of Contents

Class SentUpdateRequest

Namespace
Smartsheet.Api.Models
Assembly
smartsheet-csharp-sdk.dll

Represents the SentUpdateRequest object.///

public class SentUpdateRequest : IdentifiableModel
Inheritance
SentUpdateRequest
Inherited Members

Properties

ColumnIds

IDs of columns included in the request.

public IList<long> ColumnIds { get; set; }

Property Value

IList<long>

IncludeAttachments

Gets the flag that indicates if Attachments should be included in the Email.

public bool? IncludeAttachments { get; set; }

Property Value

bool?

the include Attachments

IncludeDiscussions

Gets the flag that indicates if Discussions should be included in the Email.

public bool? IncludeDiscussions { get; set; }

Property Value

bool?

the include Discussions

Message

Gets the Message.

public string Message { get; set; }

Property Value

string

the Message

RowIds

IDs of rows update is requested.

public IList<long> RowIds { get; set; }

Property Value

IList<long>

SentAt

Get the date and time for when the sent update request was sent to the recipient.

public DateTime SentAt { get; set; }

Property Value

DateTime

the timestamp

SentBy

Gets the User object containing name and email of the sender.

public User SentBy { get; set; }

Property Value

User

the User

SentTo

Gets the Recipient

public Recipient SentTo { get; set; }

Property Value

Recipient

the Recipients

Status

Gets the status of the sent update request.

public UpdateRequestStatus? Status { get; set; }

Property Value

UpdateRequestStatus?

the UpdateRequestStatus

Subject

Gets the Subject.

public string Subject { get; set; }

Property Value

string

the Subject

UpdateRequestId

Get the ID of the originating update request.

public long? UpdateRequestId { get; set; }

Property Value

long?

the update request Id

See Also