[C][Client] Use int* as int or bool type function parameter (#17179)

This commit is contained in:
Hui Yu
2023-12-12 22:11:13 +08:00
committed by GitHub
parent a792a79059
commit 2a27fd51a7
10 changed files with 74 additions and 60 deletions

View File

@@ -231,8 +231,8 @@ void UserAPI_testIntAndBool(apiClient_t *apiClient, int keep, int keepDay);
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**apiClient** | **apiClient_t \*** | context containing the client configuration |
**keep** | **int** | Whether to keep user data after deletion | [optional]
**keepDay** | **int** | how many days user data is kept after deletion | [optional]
**keep** | **int \*** | Whether to keep user data after deletion | [optional]
**keepDay** | **int \*** | how many days user data is kept after deletion | [optional]
### Return type