Type Alias GetByIDResult

type GetByIDResult = {
    contentType?: string;
    data?: unknown;
    eventId?: string;
    eventTime?: string;
    eventType?: string;
    eventTypeVersion?: string;
    extensions?: EventExtensions;
    id?: string;
    links?: GetLinks;
    source?: string;
    tenantId?: string;
    userId?: string;
}
Index

Properties

contentType?: string

The type that content is encoded in, always "application/json".

data?: unknown

Additional information about the event's details. The structure depends on the type and version of the event.

eventId?: string

The event's unique identifier.

eventTime?: string

The RFC3339 datetime when the event happened.

eventType?: string

The type of event that describes committed action.

eventTypeVersion?: string

The version of the event type.

extensions?: EventExtensions

The availability of the properties depends on the event and the context it was triggered in.

id?: string

The resource item's unique identifier.

links?: GetLinks
source?: string

The source of the event message, usually the producing service.

tenantId?: string

The ID of the tenant that owns the item. This is populated using the JWT.

userId?: string

The ID of the user who performed the action that triggered the event.