Table of Contents

Class EmbeddedConversationData

Namespace
Vonage.Conversations
Assembly
Vonage.dll

Represents the conversation's embedded data.

public record EmbeddedConversationData : IEquatable<EmbeddedConversationData>
Inheritance
EmbeddedConversationData
Implements
Inherited Members

Constructors

EmbeddedConversationData(string, MemberState)

Represents the conversation's embedded data.

public EmbeddedConversationData(string MemberId, MemberState MemberState)

Parameters

MemberId string

The Member Id.

MemberState MemberState

The state that the member is in.

Properties

MemberId

The Member Id.

[JsonPropertyName("id")]
[JsonPropertyOrder(0)]
public string MemberId { get; init; }

Property Value

string

MemberState

The state that the member is in.

[JsonPropertyName("state")]
[JsonPropertyOrder(1)]
[JsonConverter(typeof(EnumDescriptionJsonConverter<MemberState>))]
public MemberState MemberState { get; init; }

Property Value

MemberState