Interface OperationWithRequestBody

An object containing the properties for an OpenAPI operation with a request body.

Hierarchy

Properties

Properties

requestBody: {
    content: {
        application/json: any;
    };
}

Type declaration

  • content: {
        application/json: any;
    }
    • application/json: any
responses: {
    [statusCode: number]: {
        content: {
            application/json: any;
        };
    } | any;
}

Type declaration

  • [statusCode: number]: {
        content: {
            application/json: any;
        };
    } | any

Generated using TypeDoc