interface NotificationEndpointBase {
    createdAt?: string;
    description?: string;
    id?: string;
    labels?: Labels;
    links?: {
        labels?: string;
        members?: string;
        owners?: string;
        self?: string;
    };
    name: string;
    orgID?: string;
    status?: "active"
    | "inactive";
    type: NotificationEndpointType;
    updatedAt?: string;
    userID?: string;
}

Properties

createdAt?: string
description?: string

An optional description of the notification endpoint.

id?: string
labels?: Labels
links?: { labels?: string; members?: string; owners?: string; self?: string }

Type declaration

  • Optionallabels?: string

    URL to retrieve labels for this endpoint.

  • Optionalmembers?: string

    URL to retrieve members for this endpoint.

  • Optionalowners?: string

    URL to retrieve owners for this endpoint.

  • Optionalself?: string

    URL for this endpoint.

name: string
orgID?: string
status?: "active" | "inactive"

The status of the endpoint.

updatedAt?: string
userID?: string
MMNEPVFCICPMFPCPTTAAATR