Table of Contents

Class Sight

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

Represents the Sight object.

public class Sight : NamedModel
Inheritance
Sight
Inherited Members

Properties

AccessLevel

User’s permissions on the Sight. valid values: OWNER, ADMIN, VIEWER

public AccessLevel? AccessLevel { get; set; }

Property Value

AccessLevel?

the AccessLevel

BackgroundColor

Get the background color of the Sight

public string BackgroundColor { get; set; }

Property Value

string

the background color

ColumnCount

Get the number of columns that the Sight contains.

public int? ColumnCount { get; set; }

Property Value

int?

the columnCount

CreatedAt

Time of creation

public DateTime? CreatedAt { get; set; }

Property Value

DateTime?

the DateTime

Favorite

Indicates whether the user has marked the Sight as a favorite.

public bool? Favorite { get; set; }

Property Value

bool?

the favorite flag

ModifiedAt

Time of last modification

public DateTime? ModifiedAt { get; set; }

Property Value

DateTime?

the DateTime

URL that represents a direct link to the Sight in Smartsheet

public string Permalink { get; set; }

Property Value

string

the permalink

Source

the Source object for any Sight that was created from another Sight, if any

public Source Source { get; set; }

Property Value

Source

the source object

Widgets

Array of Widget objects.

public IList<Widget> Widgets { get; set; }

Property Value

IList<Widget>

the list

Workspace

A Workspace object, limited to only 2 attributes: id, name Note: this attribute is only present if the Sight resides within a workspace.

public Workspace Workspace { get; set; }

Property Value

Workspace

the workspace

See Also