Class SupportMessageEntity
One entry in an embedded transcript.
public record SupportMessageEntity : IEquatable<SupportMessageEntity>
- Inheritance
-
SupportMessageEntity
- Implements
- Inherited Members
Properties
AuthorIdentity
[BsonIgnoreIfNull]
public string AuthorIdentity { get; init; }
Property Value
AuthorName
[BsonIgnoreIfNull]
public string AuthorName { get; init; }
Property Value
Body
public required string Body { get; init; }
Property Value
Delivery
[BsonRepresentation(BsonType.String)]
public SupportMessageDelivery Delivery { get; init; }
Property Value
Kind
[BsonRepresentation(BsonType.String)]
public required SupportMessageKind Kind { get; init; }
Property Value
SentAt
public required DateTime SentAt { get; init; }
Property Value
Sequence
public required int Sequence { get; init; }
Property Value
Source
[BsonIgnoreIfNull]
[BsonRepresentation(BsonType.String)]
public SupportChannelType? Source { get; init; }