@@ -73,6 +73,13 @@ FakeApi <- R6::R6Class(
7373 " FakeApi" ,
7474 public = list (
7575 api_client = NULL ,
76+ # ' Initialize a new FakeApi.
77+ # '
78+ # ' @description
79+ # ' Initialize a new FakeApi.
80+ # '
81+ # ' @param api_client An instance of API client.
82+ # ' @export
7683 initialize = function (api_client ) {
7784 if (! missing(api_client )) {
7885 self $ api_client <- api_client
@@ -81,6 +88,17 @@ FakeApi <- R6::R6Class(
8188 self $ api_client <- ApiClient $ new()
8289 }
8390 },
91+ # ' test data_file to ensure it's escaped correctly
92+ # '
93+ # ' @description
94+ # ' test data_file to ensure it's escaped correctly
95+ # '
96+ # ' @param dummy dummy required parameter
97+ # ' @param var_data_file (optional) header data file
98+ # ' @param data_file (optional) name of the data file to save the result
99+ # ' @param ... Other optional arguments
100+ # ' @return User
101+ # ' @export
84102 FakeDataFile = function (dummy , var_data_file = NULL , data_file = NULL , ... ) {
85103 api_response <- self $ FakeDataFileWithHttpInfo(dummy , var_data_file , data_file = data_file , ... )
86104 resp <- api_response $ response
@@ -94,7 +112,17 @@ FakeApi <- R6::R6Class(
94112 api_response
95113 }
96114 },
97-
115+ # ' test data_file to ensure it's escaped correctly
116+ # '
117+ # ' @description
118+ # ' test data_file to ensure it's escaped correctly
119+ # '
120+ # ' @param dummy dummy required parameter
121+ # ' @param var_data_file (optional) header data file
122+ # ' @param data_file (optional) name of the data file to save the result
123+ # ' @param ... Other optional arguments
124+ # ' @return API response (User) with additional information such as HTTP status code, headers
125+ # ' @export
98126 FakeDataFileWithHttpInfo = function (dummy , var_data_file = NULL , data_file = NULL , ... ) {
99127 args <- list (... )
100128 query_params <- list ()
0 commit comments