Class MemberTimestamp
- Namespace
- Vonage.Conversations
- Assembly
- Vonage.dll
Represents the member timestamps.
public record MemberTimestamp : IEquatable<MemberTimestamp>
- Inheritance
-
MemberTimestamp
- Implements
- Inherited Members
Constructors
MemberTimestamp(DateTimeOffset, DateTimeOffset, DateTimeOffset)
Represents the member timestamps.
public MemberTimestamp(DateTimeOffset Invited, DateTimeOffset Joined, DateTimeOffset Left)
Parameters
InvitedDateTimeOffsetThe time that the member was invited to a conversation
JoinedDateTimeOffsetThe time that the member joined the conversation
LeftDateTimeOffsetThe time that the member left the conversation
Properties
Invited
The time that the member was invited to a conversation
public DateTimeOffset Invited { get; init; }
Property Value
Joined
The time that the member joined the conversation
public DateTimeOffset Joined { get; init; }
Property Value
Left
The time that the member left the conversation
public DateTimeOffset Left { get; init; }