wiremock-rest-client
Version:
Lightweight REST client to interact with a running WireMock server
20 lines (19 loc) • 353 B
TypeScript
/**
* This file was automatically generated. DO NOT MODIFY IT BY HAND.
*/
export interface Scenario {
/**
* The scenario ID
*/
id?: string;
/**
* The scenario name
*/
name?: string;
possibleStates?: string[];
/**
* The current state of this scenario
*/
state?: string;
[k: string]: any;
}