Package version:

The event response message received from the service URI.

interface EventResponseMessage {
    content?: string;
    headers?: {
        [propertyName: string]: string;
    };
    reasonPhrase?: string;
    statusCode?: string;
    version?: string;
}

Properties

content?: string

The content of the event response message.

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

The headers of the event response message.

reasonPhrase?: string

The reason phrase of the event response message.

statusCode?: string

The status code of the event response message.

version?: string

The HTTP message version.