Class NotificationSimpleEmailData
- Namespace
- Geotab.Checkmate.ObjectModel.Geotab.Checkmate.ObjectModel
- Assembly
- Geotab.Checkmate.ObjectModel.dll
The message data associated with a notification without template data.
public sealed class NotificationSimpleEmailData : NotificationData, IEntity, IComparable, IIdentifiable
- Inheritance
-
NotificationSimpleEmailData
- Implements
- Inherited Members
Constructors
NotificationSimpleEmailData()
Initializes a new instance of the NotificationSimpleEmailData class.
public NotificationSimpleEmailData()
NotificationSimpleEmailData(Id?, string?, string?, string?)
Initializes a new instance of the NotificationSimpleEmailData class. class.
public NotificationSimpleEmailData(Id? id, string? subject, string? text, string? html)
Parameters
id
IdThe Id.
subject
stringThe email subject.
text
stringThe email message in text format.
html
stringThe email message in Html format.
Properties
Html
Gets or sets the email message in Html format.
public string? Html { get; set; }
Property Value
Subject
Gets or sets the subject.
public string? Subject { get; set; }
Property Value
Text
Gets or sets the email message in text format.
public string? Text { get; set; }
Property Value
Methods
Clone()
Creates a new object that is a copy of the current instance.
public override IEntity Clone()
Returns
- IEntity
A new object that is a copy of this instance.
ToString()
Returns a string that represents this instance.
public override string ToString()