interface Subscription {
    changes: ChangeSubscription[];
    createdAt: string;
    createdBy?: CreatedBy;
    destination: Destination;
    format: DeliveryFormat;
    id: string;
    key?: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    messages: MessageSubscription[];
    status: string;
    version: number;
}

Hierarchy

Properties

Change notifications subscribed to.

createdAt: string

Date and time (UTC) the Subscription was initially created.

createdBy?: CreatedBy

Present on resources created after 1 February 2019 except for events not tracked.

destination: Destination

Messaging service to which the messages are to be sent.

Format in which the payload is delivered.

id: string

Unique identifier of the Subscription.

key?: string

User-defined unique identifier of the Subscription.

lastModifiedAt: string

Date and time (UTC) the Subscription was last modified.

lastModifiedBy?: LastModifiedBy

Present on resources created after 1 February 2019 except for events not tracked.

Messages subscribed to.

status: string

Status of the Subscription.

version: number

Current version of the Subscription.

Generated using TypeDoc