Table of Contents

Class CannedResponseOption

Namespace
Geotab.Checkmate.ObjectModel
Assembly
Geotab.Checkmate.ObjectModel.dll

Specifies the allowed responses to a TextMessage.

public class CannedResponseOption
Inheritance
CannedResponseOption
Inherited Members

Constructors

CannedResponseOption()

Initializes a new instance of the CannedResponseOption class.Constructor.

public CannedResponseOption()

CannedResponseOption(int?, string?)

Initializes a new instance of the CannedResponseOption class.Constructor.

public CannedResponseOption(int? id, string? text)

Parameters

id int?

The reply id.

text string

The reply text.

CannedResponseOption(string?)

Initializes a new instance of the CannedResponseOption class.Constructor.

public CannedResponseOption(string? text)

Parameters

text string

The reply text.

Properties

Id

Gets or sets the id number of the reply or null.

public int? Id { get; set; }

Property Value

int?

int

Text

Gets or sets the text options provided for the CannedResponse message reply.

public string? Text { get; set; }

Property Value

string

string