I Putu Pradnyana

Results 1 issues of I Putu Pradnyana

The old plugin allows us to define OpenAPI documentation on runtime. Example: ```java OpenApiDocumentation getPriceByProductId = OpenApiBuilder.document() .queryParam("productId", String.class) .json("200", Price.class); ApiBuilder.get( "/products/{productId}/price", OpenApiBuilder.documented( getPriceByProductId, priceByProductIdHandler()); ``` It would be...

enhancement
scope: runtime