Skip to content

Commit 438634c

Browse files
case change
1 parent e27d3c4 commit 438634c

36 files changed

+433
-433
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ $apiInstance = new LORISClient\Api\AuthenticationApi(
6363
// This is optional, `GuzzleHttp\Client` will be used as default.
6464
new GuzzleHttp\Client()
6565
);
66-
$loginRequest = new \LORISClient\LORISClient\Model\LoginRequest(); // \LORISClient\LORISClient\Model\LoginRequest
66+
$login_request = new \LORISClient\LORISClient\Model\LoginRequest(); // \LORISClient\LORISClient\Model\LoginRequest
6767

6868
try {
69-
$result = $apiInstance->login($loginRequest);
69+
$result = $apiInstance->login($login_request);
7070
print_r($result);
7171
} catch (Exception $e) {
7272
echo 'Exception when calling AuthenticationApi->login: ', $e->getMessage(), PHP_EOL;

docs/Api/AuthenticationApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ All URIs are relative to http://http:, except if the operation defines another b
1212
## `login()`
1313

1414
```php
15-
login($loginRequest): \LORISClient\LORISClient\Model\LoginResponse
15+
login($login_request): \LORISClient\LORISClient\Model\LoginResponse
1616
```
1717

1818
Authenticate and obtain JWT token
@@ -30,10 +30,10 @@ $apiInstance = new LORISClient\Api\AuthenticationApi(
3030
// This is optional, `GuzzleHttp\Client` will be used as default.
3131
new GuzzleHttp\Client()
3232
);
33-
$loginRequest = new \LORISClient\LORISClient\Model\LoginRequest(); // \LORISClient\LORISClient\Model\LoginRequest
33+
$login_request = new \LORISClient\LORISClient\Model\LoginRequest(); // \LORISClient\LORISClient\Model\LoginRequest
3434

3535
try {
36-
$result = $apiInstance->login($loginRequest);
36+
$result = $apiInstance->login($login_request);
3737
print_r($result);
3838
} catch (Exception $e) {
3939
echo 'Exception when calling AuthenticationApi->login: ', $e->getMessage(), PHP_EOL;
@@ -44,7 +44,7 @@ try {
4444

4545
| Name | Type | Description | Notes |
4646
| ------------- | ------------- | ------------- | ------------- |
47-
| **loginRequest** | [**\LORISClient\LORISClient\Model\LoginRequest**](../Model/LoginRequest.md)| | |
47+
| **login_request** | [**\LORISClient\LORISClient\Model\LoginRequest**](../Model/LoginRequest.md)| | |
4848

4949
### Return type
5050

docs/Api/CandidatesApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ All URIs are relative to http://http:, except if the operation defines another b
1414
## `createCandidate()`
1515

1616
```php
17-
createCandidate($candidateCreateRequest): \LORISClient\LORISClient\Model\CandidateObject
17+
createCandidate($candidate_create_request): \LORISClient\LORISClient\Model\CandidateObject
1818
```
1919

2020
Create a new candidate
@@ -36,10 +36,10 @@ $apiInstance = new LORISClient\Api\CandidatesApi(
3636
new GuzzleHttp\Client(),
3737
$config
3838
);
39-
$candidateCreateRequest = new \LORISClient\LORISClient\Model\CandidateCreateRequest(); // \LORISClient\LORISClient\Model\CandidateCreateRequest
39+
$candidate_create_request = new \LORISClient\LORISClient\Model\CandidateCreateRequest(); // \LORISClient\LORISClient\Model\CandidateCreateRequest
4040

4141
try {
42-
$result = $apiInstance->createCandidate($candidateCreateRequest);
42+
$result = $apiInstance->createCandidate($candidate_create_request);
4343
print_r($result);
4444
} catch (Exception $e) {
4545
echo 'Exception when calling CandidatesApi->createCandidate: ', $e->getMessage(), PHP_EOL;
@@ -50,7 +50,7 @@ try {
5050

5151
| Name | Type | Description | Notes |
5252
| ------------- | ------------- | ------------- | ------------- |
53-
| **candidateCreateRequest** | [**\LORISClient\LORISClient\Model\CandidateCreateRequest**](../Model/CandidateCreateRequest.md)| | |
53+
| **candidate_create_request** | [**\LORISClient\LORISClient\Model\CandidateCreateRequest**](../Model/CandidateCreateRequest.md)| | |
5454

5555
### Return type
5656

docs/Api/InstrumentManagerApi.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ try {
7676
## `installInstrument()`
7777

7878
```php
79-
installInstrument($installFile): \LORISClient\LORISClient\Model\SuccessResponse
79+
installInstrument($install_file): \LORISClient\LORISClient\Model\SuccessResponse
8080
```
8181

8282
Install instrument from LINST file or REDCap data dictionary
@@ -98,10 +98,10 @@ $apiInstance = new LORISClient\Api\InstrumentManagerApi(
9898
new GuzzleHttp\Client(),
9999
$config
100100
);
101-
$installFile = '/path/to/file.txt'; // \SplFileObject | LINST file or REDCap CSV to install
101+
$install_file = '/path/to/file.txt'; // \SplFileObject | LINST file or REDCap CSV to install
102102

103103
try {
104-
$result = $apiInstance->installInstrument($installFile);
104+
$result = $apiInstance->installInstrument($install_file);
105105
print_r($result);
106106
} catch (Exception $e) {
107107
echo 'Exception when calling InstrumentManagerApi->installInstrument: ', $e->getMessage(), PHP_EOL;
@@ -112,7 +112,7 @@ try {
112112

113113
| Name | Type | Description | Notes |
114114
| ------------- | ------------- | ------------- | ------------- |
115-
| **installFile** | **\SplFileObject****\SplFileObject**| LINST file or REDCap CSV to install | |
115+
| **install_file** | **\SplFileObject****\SplFileObject**| LINST file or REDCap CSV to install | |
116116

117117
### Return type
118118

@@ -134,7 +134,7 @@ try {
134134
## `uploadInstrumentData()`
135135

136136
```php
137-
uploadInstrumentData($action, $dataFile, $instrument, $multiInstrument): \LORISClient\LORISClient\Model\InstrumentDataResponse
137+
uploadInstrumentData($action, $data_file, $instrument, $multi_instrument): \LORISClient\LORISClient\Model\InstrumentDataResponse
138138
```
139139

140140
Bulk upload instrument data from CSV
@@ -157,12 +157,12 @@ $apiInstance = new LORISClient\Api\InstrumentManagerApi(
157157
$config
158158
);
159159
$action = 'action_example'; // string
160-
$dataFile = '/path/to/file.txt'; // \SplFileObject | CSV file with instrument data
160+
$data_file = '/path/to/file.txt'; // \SplFileObject | CSV file with instrument data
161161
$instrument = 'instrument_example'; // string | Single instrument name
162-
$multiInstrument = 'multiInstrument_example'; // string | Set to \\\"true\\\" for multi-instrument CSV
162+
$multi_instrument = 'multi_instrument_example'; // string | Set to \\\"true\\\" for multi-instrument CSV
163163

164164
try {
165-
$result = $apiInstance->uploadInstrumentData($action, $dataFile, $instrument, $multiInstrument);
165+
$result = $apiInstance->uploadInstrumentData($action, $data_file, $instrument, $multi_instrument);
166166
print_r($result);
167167
} catch (Exception $e) {
168168
echo 'Exception when calling InstrumentManagerApi->uploadInstrumentData: ', $e->getMessage(), PHP_EOL;
@@ -174,9 +174,9 @@ try {
174174
| Name | Type | Description | Notes |
175175
| ------------- | ------------- | ------------- | ------------- |
176176
| **action** | **string**| | |
177-
| **dataFile** | **\SplFileObject****\SplFileObject**| CSV file with instrument data | |
177+
| **data_file** | **\SplFileObject****\SplFileObject**| CSV file with instrument data | |
178178
| **instrument** | **string**| Single instrument name | [optional] |
179-
| **multiInstrument** | **string**| Set to \\\"true\\\" for multi-instrument CSV | [optional] |
179+
| **multi_instrument** | **string**| Set to \\\"true\\\" for multi-instrument CSV | [optional] |
180180

181181
### Return type
182182

docs/Api/InstrumentsApi.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ try {
137137
## `patchInstrumentData()`
138138

139139
```php
140-
patchInstrumentData($candid, $visit, $instrument, $instrumentDataRequest): \LORISClient\LORISClient\Model\InstrumentData
140+
patchInstrumentData($candid, $visit, $instrument, $instrument_data_request): \LORISClient\LORISClient\Model\InstrumentData
141141
```
142142

143143
Update instrument data
@@ -162,10 +162,10 @@ $apiInstance = new LORISClient\Api\InstrumentsApi(
162162
$candid = 'candid_example'; // string
163163
$visit = 'visit_example'; // string
164164
$instrument = 'instrument_example'; // string
165-
$instrumentDataRequest = new \LORISClient\LORISClient\Model\InstrumentDataRequest(); // \LORISClient\LORISClient\Model\InstrumentDataRequest
165+
$instrument_data_request = new \LORISClient\LORISClient\Model\InstrumentDataRequest(); // \LORISClient\LORISClient\Model\InstrumentDataRequest
166166

167167
try {
168-
$result = $apiInstance->patchInstrumentData($candid, $visit, $instrument, $instrumentDataRequest);
168+
$result = $apiInstance->patchInstrumentData($candid, $visit, $instrument, $instrument_data_request);
169169
print_r($result);
170170
} catch (Exception $e) {
171171
echo 'Exception when calling InstrumentsApi->patchInstrumentData: ', $e->getMessage(), PHP_EOL;
@@ -179,7 +179,7 @@ try {
179179
| **candid** | **string**| | |
180180
| **visit** | **string**| | |
181181
| **instrument** | **string**| | |
182-
| **instrumentDataRequest** | [**\LORISClient\LORISClient\Model\InstrumentDataRequest**](../Model/InstrumentDataRequest.md)| | |
182+
| **instrument_data_request** | [**\LORISClient\LORISClient\Model\InstrumentDataRequest**](../Model/InstrumentDataRequest.md)| | |
183183

184184
### Return type
185185

@@ -201,7 +201,7 @@ try {
201201
## `putInstrumentData()`
202202

203203
```php
204-
putInstrumentData($candid, $visit, $instrument, $instrumentDataRequest): \LORISClient\LORISClient\Model\InstrumentData
204+
putInstrumentData($candid, $visit, $instrument, $instrument_data_request): \LORISClient\LORISClient\Model\InstrumentData
205205
```
206206

207207
Replace instrument data
@@ -226,10 +226,10 @@ $apiInstance = new LORISClient\Api\InstrumentsApi(
226226
$candid = 'candid_example'; // string
227227
$visit = 'visit_example'; // string
228228
$instrument = 'instrument_example'; // string
229-
$instrumentDataRequest = new \LORISClient\LORISClient\Model\InstrumentDataRequest(); // \LORISClient\LORISClient\Model\InstrumentDataRequest
229+
$instrument_data_request = new \LORISClient\LORISClient\Model\InstrumentDataRequest(); // \LORISClient\LORISClient\Model\InstrumentDataRequest
230230

231231
try {
232-
$result = $apiInstance->putInstrumentData($candid, $visit, $instrument, $instrumentDataRequest);
232+
$result = $apiInstance->putInstrumentData($candid, $visit, $instrument, $instrument_data_request);
233233
print_r($result);
234234
} catch (Exception $e) {
235235
echo 'Exception when calling InstrumentsApi->putInstrumentData: ', $e->getMessage(), PHP_EOL;
@@ -243,7 +243,7 @@ try {
243243
| **candid** | **string**| | |
244244
| **visit** | **string**| | |
245245
| **instrument** | **string**| | |
246-
| **instrumentDataRequest** | [**\LORISClient\LORISClient\Model\InstrumentDataRequest**](../Model/InstrumentDataRequest.md)| | |
246+
| **instrument_data_request** | [**\LORISClient\LORISClient\Model\InstrumentDataRequest**](../Model/InstrumentDataRequest.md)| | |
247247

248248
### Return type
249249

docs/Api/VisitsApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ All URIs are relative to http://http:, except if the operation defines another b
1313
## `createVisit()`
1414

1515
```php
16-
createVisit($candid, $visit, $visitCreateRequest): \LORISClient\LORISClient\Model\VisitObject
16+
createVisit($candid, $visit, $visit_create_request): \LORISClient\LORISClient\Model\VisitObject
1717
```
1818

1919
Create a new visit
@@ -37,10 +37,10 @@ $apiInstance = new LORISClient\Api\VisitsApi(
3737
);
3838
$candid = 'candid_example'; // string
3939
$visit = 'visit_example'; // string
40-
$visitCreateRequest = new \LORISClient\LORISClient\Model\VisitCreateRequest(); // \LORISClient\LORISClient\Model\VisitCreateRequest
40+
$visit_create_request = new \LORISClient\LORISClient\Model\VisitCreateRequest(); // \LORISClient\LORISClient\Model\VisitCreateRequest
4141

4242
try {
43-
$result = $apiInstance->createVisit($candid, $visit, $visitCreateRequest);
43+
$result = $apiInstance->createVisit($candid, $visit, $visit_create_request);
4444
print_r($result);
4545
} catch (Exception $e) {
4646
echo 'Exception when calling VisitsApi->createVisit: ', $e->getMessage(), PHP_EOL;
@@ -53,7 +53,7 @@ try {
5353
| ------------- | ------------- | ------------- | ------------- |
5454
| **candid** | **string**| | |
5555
| **visit** | **string**| | |
56-
| **visitCreateRequest** | [**\LORISClient\LORISClient\Model\VisitCreateRequest**](../Model/VisitCreateRequest.md)| | |
56+
| **visit_create_request** | [**\LORISClient\LORISClient\Model\VisitCreateRequest**](../Model/VisitCreateRequest.md)| | |
5757

5858
### Return type
5959

docs/Model/CandidateCreateRequestCandidate.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**project** | **string** | |
8-
**pSCID** | **string** | | [optional]
9-
**doB** | **\DateTime** | |
8+
**pscid** | **string** | | [optional]
9+
**do_b** | **\DateTime** | |
1010
**sex** | **string** | |
1111
**site** | **string** | |
1212

docs/Model/CandidateObject.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**candID** | **string** | | [optional]
7+
**cand_id** | **string** | | [optional]
88
**project** | **string** | | [optional]
9-
**pSCID** | **string** | | [optional]
9+
**pscid** | **string** | | [optional]
1010
**site** | **string** | | [optional]
11-
**doB** | **\DateTime** | | [optional]
11+
**do_b** | **\DateTime** | | [optional]
1212
**sex** | **string** | | [optional]
1313

1414
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)

docs/Model/IdMapping.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**extStudyID** | **string** | | [optional]
8-
**candID** | **string** | | [optional]
7+
**ext_study_id** | **string** | | [optional]
8+
**cand_id** | **string** | | [optional]
99

1010
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)

docs/Model/InstrumentDataMeta.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**instrument** | **string** | | [optional]
88
**visit** | **string** | | [optional]
9-
**candID** | **string** | | [optional]
10-
**dDE** | **bool** | | [optional]
9+
**cand_id** | **string** | | [optional]
10+
**dde** | **bool** | | [optional]
1111

1212
[[Back to Model list]](../../README.md#models) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)

0 commit comments

Comments
 (0)