edgeport - v1.0.3
    Preparing search index...

    Interface MsrpResponse

    A decoded MSRP response (transaction result).

    interface MsrpResponse {
        code: number;
        continuation: string;
        headers: Record<string, string>;
        kind: "response";
        reason: string;
        transactionId: string;
    }
    Index
    code: number

    The status code (200 = ok).

    continuation: string

    The continuation flag.

    headers: Record<string, string>

    Header name/value pairs.

    kind: "response"

    Discriminant.

    reason: string

    The reason phrase.

    transactionId: string

    The transaction id echoed from the request.