Class PingMessage
- Namespace
- Geotab.Checkmate.ObjectModel.Web
- Assembly
- Geotab.Checkmate.ObjectModel.dll
public class PingMessage
- Inheritance
-
PingMessage
- Inherited Members
Constructors
PingMessage()
Initializes a new instance of the PingMessage class.Empty public constructor.
public PingMessage()
PingMessage(DateTime?, string, Guid?, PingMessageType?)
Initializes a new instance of the PingMessage class.Constructs a ping message.
public PingMessage(DateTime? dateTime, string textContent, Guid? key, PingMessageType? messageType)
Parameters
dateTimeDateTime?The date time.
textContentstringA free text field.
keyGuid?The key.
messageTypePingMessageType?The. PingMessageType
Properties
DateTime
Gets or sets the date time the message was created.
public DateTime? DateTime { get; set; }
Property Value
Key
Gets or sets the key, used to identify sender.
public Guid? Key { get; set; }
Property Value
MessageType
Gets or sets the type of message.
public PingMessageType? MessageType { get; set; }
Property Value
TextContent
Gets or sets free test field.
public string? TextContent { get; set; }