Interface PitcherResponse

interface PitcherResponse {
    request: { body?: Record<string, any>; id: string; type: string };
    response: { body?: Record<string, any>; status: PitcherResponseStatus };
    type: RESPONSE;
}

Properties

Properties

request: { body?: Record<string, any>; id: string; type: string }
response: { body?: Record<string, any>; status: PitcherResponseStatus }
type: RESPONSE