wiremock-rest-client
Version:
Lightweight REST client to interact with a running WireMock server
35 lines (34 loc) • 742 B
TypeScript
/**
* This file was automatically generated. DO NOT MODIFY IT BY HAND.
*/
export interface LoggedRequest {
/**
* The HTTP request method
*/
method?: string;
/**
* The path and query to match exactly against
*/
url?: string;
/**
* The full URL to match against
*/
absoluteUrl?: string;
/**
* Header patterns to match against in the <key>: { "<predicate>": "<value>" } form
*/
headers?: {
[k: string]: any;
};
/**
* Cookie patterns to match against in the <key>: { "<predicate>": "<value>" } form
*/
cookies?: {
[k: string]: any;
};
/**
* Body string to match against
*/
body?: string;
[k: string]: any;
}