Interface ConversationProperties

Represents the properties for a Conversation

interface ConversationProperties {
    get customData(): any;
    get customSortKey(): Nullable<string>;
    get ttl(): Nullable<number>;
}

Accessors

  • get customData(): any
  • The Conversation custom data

    Returns any

  • get customSortKey(): Nullable<string>
  • A string according to which Conversations will be ordered

    Returns Nullable<string>

  • get ttl(): Nullable<number>
  • The time-to-live (TTL) for the conversation in seconds.

    Returns Nullable<number>