-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b0c3bd
commit 8993483
Showing
41 changed files
with
178 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
@@ -456,6 +456,143 @@ public okhttp3.Call listJobsAsync(Integer limit, Integer after, Integer before, | |
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); | ||
return localVarCall; | ||
} | ||
/** | ||
* Build call for listSuccessfulJobs | ||
* @param limit Limit the number of results (max 50) (optional, default to 50) | ||
* @param after Retrieve jobs after the specified jobId (optional) | ||
* @param before Retrieve jobs after the specified jobId (optional) | ||
* @param _callback Callback for upload/download progress | ||
* @return Call to execute | ||
* @throws ApiException If fail to serialize the request body object | ||
* @http.response.details | ||
<table summary="Response Details" border="1"> | ||
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr> | ||
<tr><td> 200 </td><td> A list of all successful jobs. </td><td> - </td></tr> | ||
</table> | ||
*/ | ||
public okhttp3.Call listSuccessfulJobsCall(Integer limit, Integer after, Integer before, final ApiCallback _callback) throws ApiException { | ||
String basePath = null; | ||
// Operation Servers | ||
String[] localBasePaths = new String[] { }; | ||
|
||
// Determine Base Path to Use | ||
if (localCustomBaseUrl != null){ | ||
basePath = localCustomBaseUrl; | ||
} else if ( localBasePaths.length > 0 ) { | ||
basePath = localBasePaths[localHostIndex]; | ||
} else { | ||
basePath = null; | ||
} | ||
|
||
Object localVarPostBody = null; | ||
|
||
// create path and map variables | ||
String localVarPath = "/jobs/successful"; | ||
|
||
List<Pair> localVarQueryParams = new ArrayList<Pair>(); | ||
List<Pair> localVarCollectionQueryParams = new ArrayList<Pair>(); | ||
Map<String, String> localVarHeaderParams = new HashMap<String, String>(); | ||
Map<String, String> localVarCookieParams = new HashMap<String, String>(); | ||
Map<String, Object> localVarFormParams = new HashMap<String, Object>(); | ||
|
||
if (limit != null) { | ||
localVarQueryParams.addAll(localVarApiClient.parameterToPair("limit", limit)); | ||
} | ||
|
||
if (after != null) { | ||
localVarQueryParams.addAll(localVarApiClient.parameterToPair("after", after)); | ||
} | ||
|
||
if (before != null) { | ||
localVarQueryParams.addAll(localVarApiClient.parameterToPair("before", before)); | ||
} | ||
|
||
final String[] localVarAccepts = { | ||
"application/json" | ||
}; | ||
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); | ||
if (localVarAccept != null) { | ||
localVarHeaderParams.put("Accept", localVarAccept); | ||
} | ||
|
||
final String[] localVarContentTypes = { | ||
}; | ||
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); | ||
if (localVarContentType != null) { | ||
localVarHeaderParams.put("Content-Type", localVarContentType); | ||
} | ||
|
||
String[] localVarAuthNames = new String[] { "ApiKeyAuth" }; | ||
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); | ||
} | ||
|
||
@SuppressWarnings("rawtypes") | ||
private okhttp3.Call listSuccessfulJobsValidateBeforeCall(Integer limit, Integer after, Integer before, final ApiCallback _callback) throws ApiException { | ||
return listSuccessfulJobsCall(limit, after, before, _callback); | ||
|
||
} | ||
|
||
/** | ||
* Retrieve a list of all successful jobs | ||
* Retrieve a list of all successful jobs | ||
* @param limit Limit the number of results (max 50) (optional, default to 50) | ||
* @param after Retrieve jobs after the specified jobId (optional) | ||
* @param before Retrieve jobs after the specified jobId (optional) | ||
* @return Jobs | ||
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body | ||
* @http.response.details | ||
<table summary="Response Details" border="1"> | ||
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr> | ||
<tr><td> 200 </td><td> A list of all successful jobs. </td><td> - </td></tr> | ||
</table> | ||
*/ | ||
public Jobs listSuccessfulJobs(Integer limit, Integer after, Integer before) throws ApiException { | ||
ApiResponse<Jobs> localVarResp = listSuccessfulJobsWithHttpInfo(limit, after, before); | ||
return localVarResp.getData(); | ||
} | ||
|
||
/** | ||
* Retrieve a list of all successful jobs | ||
* Retrieve a list of all successful jobs | ||
* @param limit Limit the number of results (max 50) (optional, default to 50) | ||
* @param after Retrieve jobs after the specified jobId (optional) | ||
* @param before Retrieve jobs after the specified jobId (optional) | ||
* @return ApiResponse<Jobs> | ||
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body | ||
* @http.response.details | ||
<table summary="Response Details" border="1"> | ||
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr> | ||
<tr><td> 200 </td><td> A list of all successful jobs. </td><td> - </td></tr> | ||
</table> | ||
*/ | ||
public ApiResponse<Jobs> listSuccessfulJobsWithHttpInfo(Integer limit, Integer after, Integer before) throws ApiException { | ||
okhttp3.Call localVarCall = listSuccessfulJobsValidateBeforeCall(limit, after, before, null); | ||
Type localVarReturnType = new TypeToken<Jobs>(){}.getType(); | ||
return localVarApiClient.execute(localVarCall, localVarReturnType); | ||
} | ||
|
||
/** | ||
* Retrieve a list of all successful jobs (asynchronously) | ||
* Retrieve a list of all successful jobs | ||
* @param limit Limit the number of results (max 50) (optional, default to 50) | ||
* @param after Retrieve jobs after the specified jobId (optional) | ||
* @param before Retrieve jobs after the specified jobId (optional) | ||
* @param _callback The callback to be executed when the API call finishes | ||
* @return The request call | ||
* @throws ApiException If fail to process the API call, e.g. serializing the request body object | ||
* @http.response.details | ||
<table summary="Response Details" border="1"> | ||
<tr><td> Status Code </td><td> Description </td><td> Response Headers </td></tr> | ||
<tr><td> 200 </td><td> A list of all successful jobs. </td><td> - </td></tr> | ||
</table> | ||
*/ | ||
public okhttp3.Call listSuccessfulJobsAsync(Integer limit, Integer after, Integer before, final ApiCallback<Jobs> _callback) throws ApiException { | ||
|
||
okhttp3.Call localVarCall = listSuccessfulJobsValidateBeforeCall(limit, after, before, _callback); | ||
Type localVarReturnType = new TypeToken<Jobs>(){}.getType(); | ||
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); | ||
return localVarCall; | ||
} | ||
/** | ||
* Build call for submitJob | ||
* @param sourceFile ID of the source file (optional) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zamzar API | ||
* Zamzar provides a simple API for fast, scalable, high-quality file conversion for 100s of formats. | ||
* | ||
* The version of the OpenAPI document: 0.0.5 | ||
* The version of the OpenAPI document: 0.0.6 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
Oops, something went wrong.