forked from loafle/openapi-generator-original
* Correction to C support for additional_properties * TAB to SPACE in one file
This commit is contained in:
committed by
William Cheng
parent
e09417d25c
commit
96c1bda608
@@ -11,23 +11,29 @@
|
||||
//
|
||||
// For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
//
|
||||
void StoreAPI_deleteOrder(apiClient_t *apiClient, char *orderId);
|
||||
void
|
||||
StoreAPI_deleteOrder(apiClient_t *apiClient ,char * orderId);
|
||||
|
||||
|
||||
// Returns pet inventories by status
|
||||
//
|
||||
// Returns a map of status codes to quantities
|
||||
//
|
||||
list_t *StoreAPI_getInventory(apiClient_t *apiClient);
|
||||
list_t*
|
||||
StoreAPI_getInventory(apiClient_t *apiClient);
|
||||
|
||||
|
||||
// Find purchase order by ID
|
||||
//
|
||||
// For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
|
||||
//
|
||||
order_t *StoreAPI_getOrderById(apiClient_t *apiClient, long orderId);
|
||||
order_t*
|
||||
StoreAPI_getOrderById(apiClient_t *apiClient ,long orderId);
|
||||
|
||||
|
||||
// Place an order for a pet
|
||||
//
|
||||
order_t *StoreAPI_placeOrder(apiClient_t *apiClient, order_t *body);
|
||||
order_t*
|
||||
StoreAPI_placeOrder(apiClient_t *apiClient ,order_t * body);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user