Interface IntrospectionRequestFnOptions

interface IntrospectionRequestFnOptions {
    headers: Record<string, string>;
    json: any;
    method: "POST";
    responseType: "json";
    url: string;
}

Properties

headers: Record<string, string>
json: any
method: "POST"
responseType: "json"
url: string