/* * 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.AdvertiserFundDailyStatV2AccountType; import com.bytedance.ads.model.AdvertiserFundDailyStatV2Response; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class AdvertiserFundDailyStatV2Api { private ApiClient localVarApiClient; private int localHostIndex; private String localCustomBaseUrl; public AdvertiserFundDailyStatV2Api() { this(Configuration.getDefaultApiClient()); } public AdvertiserFundDailyStatV2Api(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 openApi2AdvertiserFundDailyStatGet * @param advertiserId (required) * @param startDate (optional) * @param endDate (optional) * @param page (optional, default to 1) * @param pageSize (optional, default to 10) * @param accountType (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 openApi2AdvertiserFundDailyStatGetCall(Long advertiserId, String startDate, String endDate, Long page, Long pageSize, AdvertiserFundDailyStatV2AccountType accountType, 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 = "/open_api/2/advertiser/fund/daily_stat/"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); Map localVarHeaderParams = new HashMap(); Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); if (advertiserId != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("advertiser_id", advertiserId)); } if (startDate != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("start_date", startDate)); } if (endDate != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("end_date", endDate)); } if (page != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("page", page)); } if (pageSize != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("page_size", pageSize)); } if (accountType != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("account_type", accountType)); } 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 openApi2AdvertiserFundDailyStatGetValidateBeforeCall(Long advertiserId, String startDate, String endDate, Long page, Long pageSize, AdvertiserFundDailyStatV2AccountType accountType, final ApiCallback _callback) throws ApiException { // verify the required parameter 'advertiserId' is set if (advertiserId == null) { throw new ApiException("Missing the required parameter 'advertiserId' when calling openApi2AdvertiserFundDailyStatGet(Async)"); } return openApi2AdvertiserFundDailyStatGetCall(advertiserId, startDate, endDate, page, pageSize, accountType, _callback); } /** * * * @param advertiserId (required) * @param startDate (optional) * @param endDate (optional) * @param page (optional, default to 1) * @param pageSize (optional, default to 10) * @param accountType (optional) * @return AdvertiserFundDailyStatV2Response * @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 AdvertiserFundDailyStatV2Response openApi2AdvertiserFundDailyStatGet(Long advertiserId, String startDate, String endDate, Long page, Long pageSize, AdvertiserFundDailyStatV2AccountType accountType) throws ApiException { ApiResponse localVarResp = openApi2AdvertiserFundDailyStatGetWithHttpInfo(advertiserId, startDate, endDate, page, pageSize, accountType); return localVarResp.getData(); } /** * * * @param advertiserId (required) * @param startDate (optional) * @param endDate (optional) * @param page (optional, default to 1) * @param pageSize (optional, default to 10) * @param accountType (optional) * @return ApiResponse<AdvertiserFundDailyStatV2Response> * @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 openApi2AdvertiserFundDailyStatGetWithHttpInfo(Long advertiserId, String startDate, String endDate, Long page, Long pageSize, AdvertiserFundDailyStatV2AccountType accountType) throws ApiException { okhttp3.Call localVarCall = openApi2AdvertiserFundDailyStatGetValidateBeforeCall(advertiserId, startDate, endDate, page, pageSize, accountType, null); Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } /** * (asynchronously) * * @param advertiserId (required) * @param startDate (optional) * @param endDate (optional) * @param page (optional, default to 1) * @param pageSize (optional, default to 10) * @param accountType (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 openApi2AdvertiserFundDailyStatGetAsync(Long advertiserId, String startDate, String endDate, Long page, Long pageSize, AdvertiserFundDailyStatV2AccountType accountType, final ApiCallback _callback) throws ApiException { okhttp3.Call localVarCall = openApi2AdvertiserFundDailyStatGetValidateBeforeCall(advertiserId, startDate, endDate, page, pageSize, accountType, _callback); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } }