Package version:

Interface TopicRuntimeProperties

Represents runtime info attributes of a topic entity

interface TopicRuntimeProperties {
    accessedAt: Date;
    createdAt: Date;
    modifiedAt: Date;
    name: string;
    scheduledMessageCount: number;
    sizeInBytes?: number;
    subscriptionCount?: number;
}

Properties

accessedAt: Date

Accessed at timestamp

createdAt: Date

Created at timestamp

modifiedAt: Date

Updated at timestamp

name: string

Name of the topic

scheduledMessageCount: number

The number of scheduled messages.

sizeInBytes?: number

Specifies the topic size in bytes.

subscriptionCount?: number

The subscription count on given topic.

Generated using TypeDoc