Skip to main content
Version: Current

TaskNotCreatedForParticipantResponse

Description

Represents a response that provides information about a task that was not created for a specific participant. This class is sealed and cannot be inherited.

Constructors

ConstructorDescription
TaskNotCreatedForParticipantResponse()Initializes a new instance of the TaskNotCreatedForParticipantResponse class.

Properties

ParticipantId Int32 Gets the unique identifier of the participant for whom the task was not created.

C#
public int? ParticipantId { get; }

ParticipantName String Gets the name of the participant who did not receive a task.

C#
public string ParticipantName { get; }

IsGroup Boolean Indicates whether the participant is an individual user or a group.

C#
public bool IsGroup { get; }

Reason String Provides a message explaining the reason why the task was not created for the participant.

C#
public string Reason { get; }