@vonage/client-sdk - v2.7.0
    Preparing search index...

    Interface Conversation

    Represents a conversation

    interface Conversation {
        memberState: "INVITED" | "JOINED" | "LEFT" | "UNKNOWN" | undefined;
        state: "ACTIVE" | "INACTIVE" | "DELETED" | undefined;
        get displayName(): Nullable<string>;
        get id(): string;
        get imageUrl(): Nullable<string>;
        get memberId(): Nullable<string>;
        get name(): string;
        get properties(): Properties;
        get timestamp(): ConversationTimestampJS;
    }
    Index
    memberState: "INVITED" | "JOINED" | "LEFT" | "UNKNOWN" | undefined

    The user member state in the conversation

    state: "ACTIVE" | "INACTIVE" | "DELETED" | undefined

    The conversation state

    • get displayName(): Nullable<string>

      Returns Nullable<string>

    • get id(): string

      Returns string

    • get imageUrl(): Nullable<string>

      Returns Nullable<string>

    • get memberId(): Nullable<string>

      Returns Nullable<string>

    • get name(): string

      Returns string

    • get properties(): Properties

      Returns Properties

    • get timestamp(): ConversationTimestampJS

      Returns ConversationTimestampJS