Interface IParameterDataTransformerContext

Context for an execution of a ParameterDataTransformer function.

interface IParameterDataTransformerContext {
    key?: Optional<string | symbol>;
    request: IHttpRequest<any>;
    response: IHttpResponse;
    source: any;
}

Properties

key?: Optional<string | symbol>

The key inside the source.

request: IHttpRequest<any>

The request context.

response: IHttpResponse

The response context.

source: any

The source value.

Generated using TypeDoc