All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.v3.api.AlipayFundAccountbookApi Maven / Gradle / Ivy

The newest version!
/*
 * 支付宝开放平台API
 * 支付宝开放平台v3协议文档
 *
 * The version of the OpenAPI document: 2024-08-30
 * 
 *
 * 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.alipay.v3.api;

import com.alipay.v3.ApiCallback;
import com.alipay.v3.ApiClient;
import com.alipay.v3.ApiException;
import com.alipay.v3.ApiResponse;
import com.alipay.v3.Configuration;
import com.alipay.v3.Pair;
import com.alipay.v3.ProgressRequestBody;
import com.alipay.v3.ProgressResponseBody;
import com.alipay.v3.util.AlipayLogger;
import com.alipay.v3.util.model.CustomizedParams;

import com.google.common.base.Strings;
import com.google.gson.reflect.TypeToken;

import java.io.IOException;


import com.alipay.v3.model.AlipayFundAccountbookCreateDefaultResponse;
import com.alipay.v3.model.AlipayFundAccountbookCreateModel;
import com.alipay.v3.model.AlipayFundAccountbookCreateResponseModel;
import com.alipay.v3.model.AlipayFundAccountbookQueryDefaultResponse;
import com.alipay.v3.model.AlipayFundAccountbookQueryResponseModel;

import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.ws.rs.core.GenericType;

public class AlipayFundAccountbookApi {
    private ApiClient localVarApiClient;
    private int localHostIndex;
    private String localCustomBaseUrl;

    public AlipayFundAccountbookApi() {
        this(Configuration.getDefaultApiClient());
    }

    public AlipayFundAccountbookApi(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 create
     * @param alipayFundAccountbookCreateModel  (optional)
     * @param _callback Callback for upload/download progress
     * @param customizedParams
     * @return Call to execute
     * @throws ApiException If fail to serialize the request body object
     * @http.response.details
     
Status Code Description Response Headers
200 common response -
0 请求失败 -
*/ public okhttp3.Call createCall(AlipayFundAccountbookCreateModel alipayFundAccountbookCreateModel, final ApiCallback _callback, CustomizedParams customizedParams) 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 = (customizedParams != null && !Strings.isNullOrEmpty(customizedParams.getBodyContent())) ? customizedParams.getBodyContent() : alipayFundAccountbookCreateModel; // create path and map variables String localVarPath = "/v3/alipay/fund/accountbook/create"; 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); } if (customizedParams != null) { //额外query参数 if (customizedParams.getQueryParams() != null && customizedParams.getQueryParams().size() > 0) { for (Map.Entry entry : customizedParams.getQueryParams().entrySet()) { localVarQueryParams.addAll(localVarApiClient.parameterToPair(entry.getKey(), entry.getValue())); } } if (!Strings.isNullOrEmpty(customizedParams.getAppAuthToken())) { localVarHeaderParams.put("alipay-app-auth-token", customizedParams.getAppAuthToken()); } //额外非全局header参数 if (customizedParams.getHeaderParams() != null && customizedParams.getHeaderParams().size() > 0) { localVarHeaderParams.putAll(customizedParams.getHeaderParams()); } } String[] localVarAuthNames = new String[] { }; return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") private okhttp3.Call createValidateBeforeCall(AlipayFundAccountbookCreateModel alipayFundAccountbookCreateModel, final ApiCallback _callback, CustomizedParams customizedParams) throws ApiException { okhttp3.Call localVarCall = createCall(alipayFundAccountbookCreateModel, _callback, customizedParams); return localVarCall; } /** * 资金记账本开通 * 资金记账本开通 * @param alipayFundAccountbookCreateModel (optional) * @return AlipayFundAccountbookCreateResponseModel * @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 common response -
0 请求失败 -
*/ public AlipayFundAccountbookCreateResponseModel create(AlipayFundAccountbookCreateModel alipayFundAccountbookCreateModel) throws ApiException { ApiResponse localVarResp = createWithHttpInfo(alipayFundAccountbookCreateModel, null); return localVarResp.getData(); } public AlipayFundAccountbookCreateResponseModel create(AlipayFundAccountbookCreateModel alipayFundAccountbookCreateModel, CustomizedParams customizedParams) throws ApiException { ApiResponse localVarResp = createWithHttpInfo(alipayFundAccountbookCreateModel, customizedParams); return localVarResp.getData(); } /** * 资金记账本开通 * 资金记账本开通 * @param alipayFundAccountbookCreateModel (optional) * @return ApiResponse<AlipayFundAccountbookCreateResponseModel> * @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 common response -
0 请求失败 -
*/ public ApiResponse createWithHttpInfo(AlipayFundAccountbookCreateModel alipayFundAccountbookCreateModel, CustomizedParams customizedParams) throws ApiException { okhttp3.Call localVarCall = createValidateBeforeCall(alipayFundAccountbookCreateModel, null, customizedParams); try { Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } catch (ApiException e) { try { e.setErrorObject(localVarApiClient.getJSON().getGson().fromJson(e.getResponseBody(), new TypeToken(){}.getType())); } catch (Exception ex) { AlipayLogger.logBizWarn(ex); } throw e; } } /** * 资金记账本开通 (asynchronously) * 资金记账本开通 * @param alipayFundAccountbookCreateModel (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 common response -
0 请求失败 -
* @deprecated */ @Deprecated public okhttp3.Call createAsync(AlipayFundAccountbookCreateModel alipayFundAccountbookCreateModel, final ApiCallback _callback) throws ApiException { okhttp3.Call localVarCall = createValidateBeforeCall(alipayFundAccountbookCreateModel, _callback, null); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } @Deprecated public okhttp3.Call createAsync(AlipayFundAccountbookCreateModel alipayFundAccountbookCreateModel, final ApiCallback _callback, CustomizedParams customizedParams) throws ApiException { okhttp3.Call localVarCall = createValidateBeforeCall(alipayFundAccountbookCreateModel, _callback, customizedParams); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } /** * Build call for query * @param accountBookId 记账账簿id (optional) * @param merchantUserId 商户会员的唯一标识,如果传入account_book_id此字段必传并比对一致性。 (optional) * @param sceneCode 资金记账本的开通场景码 (optional) * @param extInfo JSON格式,传递业务扩展参数 (optional) * @param _callback Callback for upload/download progress * @param customizedParams * @return Call to execute * @throws ApiException If fail to serialize the request body object * @http.response.details
Status Code Description Response Headers
200 common response -
0 请求失败 -
*/ public okhttp3.Call queryCall(String accountBookId, String merchantUserId, String sceneCode, String extInfo, final ApiCallback _callback, CustomizedParams customizedParams) 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 = "/v3/alipay/fund/accountbook/query"; List localVarQueryParams = new ArrayList(); List localVarCollectionQueryParams = new ArrayList(); Map localVarHeaderParams = new HashMap(); Map localVarCookieParams = new HashMap(); Map localVarFormParams = new HashMap(); if (accountBookId != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("account_book_id", accountBookId)); } if (merchantUserId != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("merchant_user_id", merchantUserId)); } if (sceneCode != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("scene_code", sceneCode)); } if (extInfo != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("ext_info", extInfo)); } 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); } if (customizedParams != null) { //额外query参数 if (customizedParams.getQueryParams() != null && customizedParams.getQueryParams().size() > 0) { for (Map.Entry entry : customizedParams.getQueryParams().entrySet()) { localVarQueryParams.addAll(localVarApiClient.parameterToPair(entry.getKey(), entry.getValue())); } } if (!Strings.isNullOrEmpty(customizedParams.getAppAuthToken())) { localVarHeaderParams.put("alipay-app-auth-token", customizedParams.getAppAuthToken()); } //额外非全局header参数 if (customizedParams.getHeaderParams() != null && customizedParams.getHeaderParams().size() > 0) { localVarHeaderParams.putAll(customizedParams.getHeaderParams()); } } String[] localVarAuthNames = new String[] { }; return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback); } @SuppressWarnings("rawtypes") private okhttp3.Call queryValidateBeforeCall(String accountBookId, String merchantUserId, String sceneCode, String extInfo, final ApiCallback _callback, CustomizedParams customizedParams) throws ApiException { okhttp3.Call localVarCall = queryCall(accountBookId, merchantUserId, sceneCode, extInfo, _callback, customizedParams); return localVarCall; } /** * 资金记账本的信息查询 * 资金记账本的信息查询 * @param accountBookId 记账账簿id (optional) * @param merchantUserId 商户会员的唯一标识,如果传入account_book_id此字段必传并比对一致性。 (optional) * @param sceneCode 资金记账本的开通场景码 (optional) * @param extInfo JSON格式,传递业务扩展参数 (optional) * @return AlipayFundAccountbookQueryResponseModel * @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 common response -
0 请求失败 -
*/ public AlipayFundAccountbookQueryResponseModel query(String accountBookId, String merchantUserId, String sceneCode, String extInfo) throws ApiException { ApiResponse localVarResp = queryWithHttpInfo(accountBookId, merchantUserId, sceneCode, extInfo, null); return localVarResp.getData(); } public AlipayFundAccountbookQueryResponseModel query(String accountBookId, String merchantUserId, String sceneCode, String extInfo, CustomizedParams customizedParams) throws ApiException { ApiResponse localVarResp = queryWithHttpInfo(accountBookId, merchantUserId, sceneCode, extInfo, customizedParams); return localVarResp.getData(); } /** * 资金记账本的信息查询 * 资金记账本的信息查询 * @param accountBookId 记账账簿id (optional) * @param merchantUserId 商户会员的唯一标识,如果传入account_book_id此字段必传并比对一致性。 (optional) * @param sceneCode 资金记账本的开通场景码 (optional) * @param extInfo JSON格式,传递业务扩展参数 (optional) * @return ApiResponse<AlipayFundAccountbookQueryResponseModel> * @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 common response -
0 请求失败 -
*/ public ApiResponse queryWithHttpInfo(String accountBookId, String merchantUserId, String sceneCode, String extInfo, CustomizedParams customizedParams) throws ApiException { okhttp3.Call localVarCall = queryValidateBeforeCall(accountBookId, merchantUserId, sceneCode, extInfo, null, customizedParams); try { Type localVarReturnType = new TypeToken(){}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } catch (ApiException e) { try { e.setErrorObject(localVarApiClient.getJSON().getGson().fromJson(e.getResponseBody(), new TypeToken(){}.getType())); } catch (Exception ex) { AlipayLogger.logBizWarn(ex); } throw e; } } /** * 资金记账本的信息查询 (asynchronously) * 资金记账本的信息查询 * @param accountBookId 记账账簿id (optional) * @param merchantUserId 商户会员的唯一标识,如果传入account_book_id此字段必传并比对一致性。 (optional) * @param sceneCode 资金记账本的开通场景码 (optional) * @param extInfo JSON格式,传递业务扩展参数 (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 common response -
0 请求失败 -
* @deprecated */ @Deprecated public okhttp3.Call queryAsync(String accountBookId, String merchantUserId, String sceneCode, String extInfo, final ApiCallback _callback) throws ApiException { okhttp3.Call localVarCall = queryValidateBeforeCall(accountBookId, merchantUserId, sceneCode, extInfo, _callback, null); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } @Deprecated public okhttp3.Call queryAsync(String accountBookId, String merchantUserId, String sceneCode, String extInfo, final ApiCallback _callback, CustomizedParams customizedParams) throws ApiException { okhttp3.Call localVarCall = queryValidateBeforeCall(accountBookId, merchantUserId, sceneCode, extInfo, _callback, customizedParams); Type localVarReturnType = new TypeToken(){}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy