File tree Expand file tree Collapse file tree 3 files changed +288
-395
lines changed
Expand file tree Collapse file tree 3 files changed +288
-395
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public class ApiClient {
7171 private KeyManager [] keyManagers ;
7272
7373 private OkHttpClient httpClient ;
74- private JSON json ;
74+ private Json json ;
7575
7676 private HttpLoggingInterceptor loggingInterceptor ;
7777
@@ -84,7 +84,7 @@ public ApiClient() {
8484
8585 verifyingSsl = true ;
8686
87- json = new JSON ();
87+ json = new Json ();
8888
8989 // Set default User-Agent.
9090 setUserAgent ("Swagger-Codegen/6.0.0/java" );
@@ -142,7 +142,7 @@ public ApiClient setHttpClient(OkHttpClient httpClient) {
142142 *
143143 * @return JSON object
144144 */
145- public JSON getJSON () {
145+ public Json getJSON () {
146146 return json ;
147147 }
148148
@@ -152,7 +152,7 @@ public JSON getJSON() {
152152 * @param json JSON object
153153 * @return Api client
154154 */
155- public ApiClient setJSON (JSON json ) {
155+ public ApiClient setJSON (Json json ) {
156156 this .json = json ;
157157 return this ;
158158 }
You can’t perform that action at this time.
0 commit comments