/* * Oceanengine Open Api * 巨量引擎开放平台 Open Api * * The version of the OpenAPI document: 1.1.19 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.bytedance.ads.api; import com.bytedance.ads.ApiCallback; import com.bytedance.ads.ApiClient; import com.bytedance.ads.ApiException; import com.bytedance.ads.ApiResponse; import com.bytedance.ads.Configuration; import com.bytedance.ads.Pair; import com.google.gson.reflect.TypeToken; import com.bytedance.ads.model.BrandAdUpdateDeliveryInfoV30Request; import com.bytedance.ads.model.BrandAdUpdateDeliveryInfoV30Response; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class BrandAdUpdateDeliveryInfoV30Api { private ApiClient localVarApiClient; private int localHostIndex; private String localCustomBaseUrl; public BrandAdUpdateDeliveryInfoV30Api() { this(Configuration.getDefaultApiClient()); } public BrandAdUpdateDeliveryInfoV30Api(ApiClient apiClient) { this.localVarApiClient = apiClient; } public ApiClient getApiClient() { return localVarApiClient; } public void setApiClient(ApiClient apiClient) { this.localVarApiClient = apiClient; } public int getHostIndex() { return localHostIndex; } public void setHostIndex(int hostIndex) { this.localHostIndex = hostIndex; } public String getCustomBaseUrl() { return localCustomBaseUrl; } public void setCustomBaseUrl(String customBaseUrl) { this.localCustomBaseUrl = customBaseUrl; } /** * Build call for openApiV30BrandAdUpdateDeliveryInfoPost * @param brandAdUpdateDeliveryInfoV30Request (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
Status Code Description Response Headers
200 OK -
*/ public okhttp3.Call openApiV30BrandAdUpdateDeliveryInfoPostCall(BrandAdUpdateDeliveryInfoV30Request brandAdUpdateDeliveryInfoV30Request, 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 = brandAdUpdateDeliveryInfoV30Request; // create path and map variables String localVarPath = "/open_api/v3.0/brand/ad/update_delivery_info/"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); Map localVarHeaderParams = new HashMap(); Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); final String[] localVarAccepts = { "application/json" }; final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) { localVarHeaderParams.put("Accept", localVarAccept); } final String[] localVarContentTypes = { "application/json" }; final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes); if (localVarContentType != null) { localVarHeaderParams.put("Content-Type", localVarContentType); } String[] localVarAuthNames = new String[] { "ApiKeyAuth" }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") private okhttp3.Call openApiV30BrandAdUpdateDeliveryInfoPostValidateBeforeCall(BrandAdUpdateDeliveryInfoV30Request brandAdUpdateDeliveryInfoV30Request, final ApiCallback _callback) throws ApiException { return openApiV30BrandAdUpdateDeliveryInfoPostCall(brandAdUpdateDeliveryInfoV30Request, _callback); } /** * * * @param brandAdUpdateDeliveryInfoV30Request (optional) * @return BrandAdUpdateDeliveryInfoV30Response * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
200 OK -
*/ public BrandAdUpdateDeliveryInfoV30Response openApiV30BrandAdUpdateDeliveryInfoPost(BrandAdUpdateDeliveryInfoV30Request brandAdUpdateDeliveryInfoV30Request) throws ApiException { ApiResponse localVarResp = openApiV30BrandAdUpdateDeliveryInfoPostWithHttpInfo(brandAdUpdateDeliveryInfoV30Request); return localVarResp.getData(); } /** * * * @param brandAdUpdateDeliveryInfoV30Request (optional) * @return ApiResponse<BrandAdUpdateDeliveryInfoV30Response> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body * @http.response.details
Status Code Description Response Headers
200 OK -
*/ public ApiResponse openApiV30BrandAdUpdateDeliveryInfoPostWithHttpInfo(BrandAdUpdateDeliveryInfoV30Request brandAdUpdateDeliveryInfoV30Request) throws ApiException { okhttp3.Call localVarCall = openApiV30BrandAdUpdateDeliveryInfoPostValidateBeforeCall(brandAdUpdateDeliveryInfoV30Request, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * * @param brandAdUpdateDeliveryInfoV30Request (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
Status Code Description Response Headers
200 OK -
*/ public okhttp3.Call openApiV30BrandAdUpdateDeliveryInfoPostAsync(BrandAdUpdateDeliveryInfoV30Request brandAdUpdateDeliveryInfoV30Request, final ApiCallback _callback) throws ApiException { okhttp3.Call localVarCall = openApiV30BrandAdUpdateDeliveryInfoPostValidateBeforeCall(brandAdUpdateDeliveryInfoV30Request, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } }