Table of Contents

Class Recipient

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

Specifies the recipient of an Email.
The recipient may be either an individual or a group.
To specify an individual, set the email attribute; to specify a group, set the groupId attribute.
Either email and groupId may be set, but not both.

public class Recipient
Inheritance
Recipient
Inherited Members

Properties

Email

The email address of an individual recipient. If set, GroupId should not be set.

public string Email { get; set; }

Property Value

string

GroupId

The ID of a group recipient. If set, Email should not be set.

public long? GroupId { get; set; }

Property Value

long?