interface RouteSummary {
    createdAt?: Date;
    hubId: string;
    id: string;
    name: string;
    topic: string;
    type: RouteRouteType;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Date at which the route was created.

hubId: string

Hub ID of the route.

id: string

Route ID.

name: string

Route name.

topic: string

Topic the route subscribes to. It must be a valid MQTT topic and up to 65535 characters.

Route type.

updatedAt?: Date

Date at which the route was last updated.