@valon-technologies/gestalt
    Preparing search index...

    Interface HTTPSubjectRequest

    HTTPSubjectRequest carries one verified hosted HTTP request into an optional plugin-local subject resolution hook.

    interface HTTPSubjectRequest {
        binding: string;
        method: string;
        path: string;
        contentType: string;
        headers: { [key: string]: StringList };
        query: { [key: string]: StringList };
        params?: JsonObject;
        rawBody: Uint8Array;
        securityScheme: string;
        verifiedSubject: string;
        verifiedClaims: { [key: string]: string };
    }
    Index

    Properties

    binding: string
    method: string
    path: string
    contentType: string
    headers: { [key: string]: StringList }
    query: { [key: string]: StringList }
    params?: JsonObject
    rawBody: Uint8Array
    securityScheme: string
    verifiedSubject: string
    verifiedClaims: { [key: string]: string }