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

    Interface UpdateConversationParameters

    Parameters object for VonageClient.updateConversation.

    Every property is an Option monad. When set to Option.Some the property will be updated. When set to Option.None the property will remain unchanged.

    interface UpdateConversationParameters {
        customData?: CustomData | Option<(CustomData | null | undefined)> | null;
        customSortKey?: string | Option<string | null | undefined> | null;
        displayName?: string | Option<string | null | undefined> | null;
        imageUrl?: string | Option<string | null | undefined> | null;
        name?: string | Option<string>;
        ttl?: number | Option<number>;
    }
    Index
    customData?: CustomData | Option<(CustomData | null | undefined)> | null

    Custom data associated with the conversation.

    customSortKey?: string | Option<string | null | undefined> | null

    A custom sort key for the conversation.

    displayName?: string | Option<string | null | undefined> | null

    A display name for the conversation.

    imageUrl?: string | Option<string | null | undefined> | null

    The URL of an image associated with the conversation.

    name?: string | Option<string>

    The name of the conversation.

    ttl?: number | Option<number>

    The time-to-live (TTL) for the conversation in seconds.