Package version:

The event request message sent to the service URI.

interface EventRequestMessage {
    content?: EventContent;
    headers?: {
        [propertyName: string]: string;
    };
    method?: string;
    requestUri?: string;
    version?: string;
}

Properties

content?: EventContent

The content of the event request message.

headers?: {
    [propertyName: string]: string;
}

The headers of the event request message.

method?: string

The HTTP method used to send the event request message.

requestUri?: string

The URI used to send the event request message.

version?: string

The HTTP message version.