com.alipay.api.internal.util.AlipayHashMap.putAll()

Here are the examples of the java api com.alipay.api.internal.util.AlipayHashMap.putAll() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

171 Examples 7

18 Source : KoubeiMemberRetailerQueryRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : ZolozIdentificationUserWebQueryRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("biz_content", this.bizContent);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : ZhimaMerchantCloseloopDataUploadRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("biz_ext_params", this.bizExtParams);
    txtParams.put("columns", this.columns);
    txtParams.put("file_charset", this.fileCharset);
    txtParams.put("linked_merchant_id", this.linkedMerchantId);
    txtParams.put("primary_key_columns", this.primaryKeyColumns);
    txtParams.put("records", this.records);
    txtParams.put("scene_code", this.sceneCode);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : ZhimaDataBatchFeedbackRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("biz_ext_params", this.bizExtParams);
    txtParams.put("columns", this.columns);
    txtParams.put("file_charset", this.fileCharset);
    txtParams.put("file_description", this.fileDescription);
    txtParams.put("file_type", this.fileType);
    txtParams.put("primary_key_columns", this.primaryKeyColumns);
    txtParams.put("records", this.records);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AntMerchantExpandImageUploadRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("image_type", this.imageType);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayZmscoreZrankGetRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("user_id", this.userId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayZdataserviceUnidataQueryRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("query_condition", this.queryCondition);
    txtParams.put("uniq_key", this.uniqKey);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayZdatafrontDatatransferedSendRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("data", this.data);
    txtParams.put("idenreplacedy", this.idenreplacedy);
    txtParams.put("type_id", this.typeId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayZdatafrontDatatransferedFileuploadRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("columns", this.columns);
    txtParams.put("file_description", this.fileDescription);
    txtParams.put("file_digest", this.fileDigest);
    txtParams.put("file_type", this.fileType);
    txtParams.put("primary_key", this.primaryKey);
    txtParams.put("records", this.records);
    txtParams.put("type_id", this.typeId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayZdatafrontCommonQueryRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("cache_interval", this.cacheInterval);
    txtParams.put("query_conditions", this.queryConditions);
    txtParams.put("service_name", this.serviceName);
    txtParams.put("visit_biz", this.visitBiz);
    txtParams.put("visit_biz_line", this.visitBizLine);
    txtParams.put("visit_domain", this.visitDomain);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayUserTradeSearchRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("alipay_order_no", this.alipayOrderNo);
    txtParams.put("end_time", this.endTime);
    txtParams.put("merchant_order_no", this.merchantOrderNo);
    txtParams.put("order_from", this.orderFrom);
    txtParams.put("order_status", this.orderStatus);
    txtParams.put("order_type", this.orderType);
    txtParams.put("page_no", this.pageNo);
    txtParams.put("page_size", this.pageSize);
    txtParams.put("start_time", this.startTime);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayUserTestRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("userinfo", this.userinfo == null ? null : new com.alipay.api.internal.util.json.JSONWriter().write(this.userinfo, true));
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayUserGetRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("fields", this.fields);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayUserContractGetRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("subscriber_user_id", this.subscriberUserId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayUserAccountSearchRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("end_time", this.endTime);
    txtParams.put("fields", this.fields);
    txtParams.put("page_no", this.pageNo);
    txtParams.put("page_size", this.pageSize);
    txtParams.put("start_time", this.startTime);
    txtParams.put("type", this.type);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayUserAccountFreezeGetRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("freeze_type", this.freezeType);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayTrustUserTokenGetRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("ali_trust_user_info", this.aliTrustUserInfo);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayTrustUserRiskidentifyGetRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("type", this.type);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayTrustUserReportGetRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("scene", this.scene);
    txtParams.put("type", this.type);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayTransferThirdpartyBillCreateRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("amount", this.amount);
    txtParams.put("currency", this.currency);
    txtParams.put("ext_param", this.extParam);
    txtParams.put("memo", this.memo);
    txtParams.put("partner_id", this.partnerId);
    txtParams.put("payee_account", this.payeeAccount);
    txtParams.put("payee_type", this.payeeType);
    txtParams.put("payer_account", this.payerAccount);
    txtParams.put("payer_type", this.payerType);
    txtParams.put("payment_id", this.paymentId);
    txtParams.put("payment_source", this.paymentSource);
    txtParams.put("replacedle", this.replacedle);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipaySystemOauthTokenRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("code", this.code);
    txtParams.put("grant_type", this.grantType);
    txtParams.put("refresh_token", this.refreshToken);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipaySecurityRiskDetectRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("buyer_account_no", this.buyerAccountNo);
    txtParams.put("buyer_bind_bankcard", this.buyerBindBankcard);
    txtParams.put("buyer_bind_bankcard_type", this.buyerBindBankcardType);
    txtParams.put("buyer_bind_mobile", this.buyerBindMobile);
    txtParams.put("buyer_grade", this.buyerGrade);
    txtParams.put("buyer_idenreplacedy_no", this.buyerIdenreplacedyNo);
    txtParams.put("buyer_idenreplacedy_type", this.buyerIdenreplacedyType);
    txtParams.put("buyer_real_name", this.buyerRealName);
    txtParams.put("buyer_reg_date", this.buyerRegDate);
    txtParams.put("buyer_reg_email", this.buyerRegEmail);
    txtParams.put("buyer_reg_mobile", this.buyerRegMobile);
    txtParams.put("buyer_scene_bankcard", this.buyerSceneBankcard);
    txtParams.put("buyer_scene_bankcard_type", this.buyerSceneBankcardType);
    txtParams.put("buyer_scene_email", this.buyerSceneEmail);
    txtParams.put("buyer_scene_mobile", this.buyerSceneMobile);
    txtParams.put("currency", this.currency);
    txtParams.put("env_client_base_band", this.envClientBaseBand);
    txtParams.put("env_client_base_station", this.envClientBaseStation);
    txtParams.put("env_client_coordinates", this.envClientCoordinates);
    txtParams.put("env_client_imei", this.envClientImei);
    txtParams.put("env_client_imsi", this.envClientImsi);
    txtParams.put("env_client_ios_udid", this.envClientIosUdid);
    txtParams.put("env_client_ip", this.envClientIp);
    txtParams.put("env_client_mac", this.envClientMac);
    txtParams.put("env_client_screen", this.envClientScreen);
    txtParams.put("env_client_uuid", this.envClientUuid);
    txtParams.put("item_quanreplacedy", this.itemQuanreplacedy);
    txtParams.put("item_unit_price", this.itemUnitPrice);
    txtParams.put("js_token_id", this.jsTokenId);
    txtParams.put("order_amount", this.orderAmount);
    txtParams.put("order_category", this.orderCategory);
    txtParams.put("order_credate_time", this.orderCredateTime);
    txtParams.put("order_item_city", this.orderItemCity);
    txtParams.put("order_item_name", this.orderItemName);
    txtParams.put("order_no", this.orderNo);
    txtParams.put("partner_id", this.partnerId);
    txtParams.put("receiver_address", this.receiverAddress);
    txtParams.put("receiver_city", this.receiverCity);
    txtParams.put("receiver_district", this.receiverDistrict);
    txtParams.put("receiver_email", this.receiverEmail);
    txtParams.put("receiver_mobile", this.receiverMobile);
    txtParams.put("receiver_name", this.receiverName);
    txtParams.put("receiver_state", this.receiverState);
    txtParams.put("receiver_zip", this.receiverZip);
    txtParams.put("scene_code", this.sceneCode);
    txtParams.put("seller_account_no", this.sellerAccountNo);
    txtParams.put("seller_bind_bankcard", this.sellerBindBankcard);
    txtParams.put("seller_bind_bankcard_type", this.sellerBindBankcardType);
    txtParams.put("seller_bind_mobile", this.sellerBindMobile);
    txtParams.put("seller_idenreplacedy_no", this.sellerIdenreplacedyNo);
    txtParams.put("seller_idenreplacedy_type", this.sellerIdenreplacedyType);
    txtParams.put("seller_real_name", this.sellerRealName);
    txtParams.put("seller_reg_date", this.sellerRegDate);
    txtParams.put("seller_reg_email", this.sellerRegEmail);
    txtParams.put("seller_reg_moile", this.sellerRegMoile);
    txtParams.put("transport_type", this.transportType);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipaySecurityProdSignatureFileUploadRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("biz_product", this.bizProduct);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipaySecurityInfoAnalysisRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("env_client_base_band", this.envClientBaseBand);
    txtParams.put("env_client_base_station", this.envClientBaseStation);
    txtParams.put("env_client_coordinates", this.envClientCoordinates);
    txtParams.put("env_client_imei", this.envClientImei);
    txtParams.put("env_client_imsi", this.envClientImsi);
    txtParams.put("env_client_ios_udid", this.envClientIosUdid);
    txtParams.put("env_client_ip", this.envClientIp);
    txtParams.put("env_client_mac", this.envClientMac);
    txtParams.put("env_client_screen", this.envClientScreen);
    txtParams.put("env_client_uuid", this.envClientUuid);
    txtParams.put("js_token_id", this.jsTokenId);
    txtParams.put("partner_id", this.partnerId);
    txtParams.put("scene_code", this.sceneCode);
    txtParams.put("user_account_no", this.userAccountNo);
    txtParams.put("user_bind_bankcard", this.userBindBankcard);
    txtParams.put("user_bind_bankcard_type", this.userBindBankcardType);
    txtParams.put("user_bind_mobile", this.userBindMobile);
    txtParams.put("user_idenreplacedy_type", this.userIdenreplacedyType);
    txtParams.put("user_real_name", this.userRealName);
    txtParams.put("user_reg_date", this.userRegDate);
    txtParams.put("user_reg_email", this.userRegEmail);
    txtParams.put("user_reg_mobile", this.userRegMobile);
    txtParams.put("userr_idenreplacedy_no", this.userrIdenreplacedyNo);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPromorulecenterRuleAnalyzeRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("biz_id", this.bizId);
    txtParams.put("rule_uuid", this.ruleUuid);
    txtParams.put("user_id", this.userId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPointOrderGetRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("merchant_order_no", this.merchantOrderNo);
    txtParams.put("user_symbol", this.userSymbol);
    txtParams.put("user_symbol_type", this.userSymbolType);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPointOrderAddRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("memo", this.memo);
    txtParams.put("merchant_order_no", this.merchantOrderNo);
    txtParams.put("order_time", this.orderTime);
    txtParams.put("point_count", this.pointCount);
    txtParams.put("user_symbol", this.userSymbol);
    txtParams.put("user_symbol_type", this.userSymbolType);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassVerifyQueryRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("verify_code", this.verifyCode);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassTplUpdateRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("tpl_content", this.tplContent);
    txtParams.put("tpl_id", this.tplId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassTplContentUpdateRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("channel_id", this.channelId);
    txtParams.put("serial_number", this.serialNumber);
    txtParams.put("status", this.status);
    txtParams.put("tpl_params", this.tplParams);
    txtParams.put("verify_code", this.verifyCode);
    txtParams.put("verify_type", this.verifyType);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassTplContentAddRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("recognition_info", this.recognitionInfo);
    txtParams.put("recognition_type", this.recognitionType);
    txtParams.put("tpl_id", this.tplId);
    txtParams.put("tpl_params", this.tplParams);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassTplAddRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("tpl_content", this.tplContent);
    txtParams.put("unique_id", this.uniqueId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassSyncUpdateRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("channel_id", this.channelId);
    txtParams.put("ext_info", this.extInfo);
    txtParams.put("preplaced", this.preplaced);
    txtParams.put("serial_number", this.serialNumber);
    txtParams.put("status", this.status);
    txtParams.put("verify_code", this.verifyCode);
    txtParams.put("verify_type", this.verifyType);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassSyncAddRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("file_content", this.fileContent);
    txtParams.put("out_trade_no", this.outTradeNo);
    txtParams.put("partner_id", this.partnerId);
    txtParams.put("user_id", this.userId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassFileAddRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("file_content", this.fileContent);
    txtParams.put("recognition_info", this.recognitionInfo);
    txtParams.put("recognition_type", this.recognitionType);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassCodeVerifyRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("ext_info", this.extInfo);
    txtParams.put("operator_id", this.operatorId);
    txtParams.put("operator_type", this.operatorType);
    txtParams.put("verify_code", this.verifyCode);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayPassCodeAddRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("file_content", this.fileContent);
    txtParams.put("recognition_info", this.recognitionInfo);
    txtParams.put("recognition_type", this.recognitionType);
    txtParams.put("verify_type", this.verifyType == null ? null : new com.alipay.api.internal.util.json.JSONWriter().write(this.verifyType, true));
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOperatorMobileBindRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("check_signcard", this.checkSigncard);
    txtParams.put("f_return_url", this.fReturnUrl);
    txtParams.put("has_spi", this.hreplacedpi);
    txtParams.put("operator_name", this.operatorName);
    txtParams.put("province_name", this.provinceName);
    txtParams.put("s_return_url", this.sReturnUrl);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenPublicLifeMsgSendRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("category", this.category);
    txtParams.put("content", this.content);
    txtParams.put("desc", this.desc);
    txtParams.put("msg_type", this.msgType);
    txtParams.put("source_ext_info", this.sourceExtInfo);
    txtParams.put("replacedle", this.replacedle);
    txtParams.put("unique_msg_id", this.uniqueMsgId);
    txtParams.put("video_length", this.videoLength);
    txtParams.put("video_samples", this.videoSamples == null ? null : new com.alipay.api.internal.util.json.JSONWriter().write(this.videoSamples, true));
    txtParams.put("video_size", this.videoSize);
    txtParams.put("video_source", this.videoSource);
    txtParams.put("video_temporary_url", this.videoTemporaryUrl);
    txtParams.put("video_url", this.videoUrl);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenPublicLifeModifyRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("contact_email", this.contactEmail);
    txtParams.put("contact_name", this.contactName);
    txtParams.put("contact_tel", this.contactTel);
    txtParams.put("customer_tel", this.customerTel);
    txtParams.put("description", this.description);
    txtParams.put("extend_data", this.extendData);
    txtParams.put("life_name", this.lifeName);
    txtParams.put("user_id", this.userId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenPublicLifeCreateRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("contact_email", this.contactEmail);
    txtParams.put("contact_name", this.contactName);
    txtParams.put("contact_tel", this.contactTel);
    txtParams.put("customer_tel", this.customerTel);
    txtParams.put("description", this.description);
    txtParams.put("extend_data", this.extendData);
    txtParams.put("life_name", this.lifeName);
    txtParams.put("mcc_code", this.mccCode);
    txtParams.put("public_biz_type", this.publicBizType);
    txtParams.put("show_style", this.showStyle);
    txtParams.put("user_id", this.userId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenPublicLifeAgentCreateRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("account", this.account);
    txtParams.put("business_license_no", this.businessLicenseNo);
    txtParams.put("contact_email", this.contactEmail);
    txtParams.put("contact_mobile", this.contactMobile);
    txtParams.put("contact_name", this.contactName);
    txtParams.put("mcc_code", this.mccCode);
    txtParams.put("out_biz_no", this.outBizNo);
    txtParams.put("public_desc", this.publicDesc);
    txtParams.put("public_name", this.publicName);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenPublicLifeAccountCreateRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("catagory_id", this.catagoryId);
    txtParams.put("contact_email", this.contactEmail);
    txtParams.put("contact_tel", this.contactTel);
    txtParams.put("content", this.content);
    txtParams.put("customer_tel", this.customerTel);
    txtParams.put("life_name", this.lifeName);
    txtParams.put("user_id", this.userId);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenMiniVersionAuditApplyRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("app_category_ids", this.appCategoryIds);
    txtParams.put("app_desc", this.appDesc);
    txtParams.put("app_english_name", this.appEnglishName);
    txtParams.put("app_name", this.appName);
    txtParams.put("app_slogan", this.appSlogan);
    txtParams.put("app_version", this.appVersion);
    txtParams.put("memo", this.memo);
    txtParams.put("region_type", this.regionType);
    txtParams.put("service_email", this.serviceEmail);
    txtParams.put("service_phone", this.servicePhone);
    txtParams.put("service_region_info", this.serviceRegionInfo == null ? null : new com.alipay.api.internal.util.json.JSONWriter().write(this.serviceRegionInfo, true));
    txtParams.put("version_desc", this.versionDesc);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenMiniBaseinfoModifyRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("app_category_ids", this.appCategoryIds);
    txtParams.put("app_desc", this.appDesc);
    txtParams.put("app_english_name", this.appEnglishName);
    txtParams.put("app_name", this.appName);
    txtParams.put("app_slogan", this.appSlogan);
    txtParams.put("service_email", this.serviceEmail);
    txtParams.put("service_phone", this.servicePhone);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenAgentZhimabriefSignRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("alipay_life_name", this.alipayLifeName);
    txtParams.put("app_name", this.appName);
    txtParams.put("batch_no", this.batchNo);
    txtParams.put("business_license_no", this.businessLicenseNo);
    txtParams.put("custom_usage_scene", this.customUsageScene);
    txtParams.put("date_limitation", this.dateLimitation);
    txtParams.put("dr_contact", this.drContact == null ? null : new com.alipay.api.internal.util.json.JSONWriter().write(this.drContact, true));
    txtParams.put("enterprise_alias", this.enterpriseAlias);
    txtParams.put("long_term", this.longTerm);
    txtParams.put("mcc_code", this.mccCode);
    txtParams.put("oh_contact", this.ohContact == null ? null : new com.alipay.api.internal.util.json.JSONWriter().write(this.ohContact, true));
    txtParams.put("pr_contact", this.prContact == null ? null : new com.alipay.api.internal.util.json.JSONWriter().write(this.prContact, true));
    txtParams.put("usage_scene", this.usageScene == null ? null : new com.alipay.api.internal.util.json.JSONWriter().write(this.usageScene, true));
    txtParams.put("web_sites", this.webSites == null ? null : new com.alipay.api.internal.util.json.JSONWriter().write(this.webSites, true));
    txtParams.put("wechat_official_account_name", this.wechatOfficialAccountName);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenAgentMobilepaySignRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("app_name", this.appName);
    txtParams.put("batch_no", this.batchNo);
    txtParams.put("business_license_no", this.businessLicenseNo);
    txtParams.put("date_limitation", this.dateLimitation);
    txtParams.put("long_term", this.longTerm);
    txtParams.put("mcc_code", this.mccCode);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenAgentMiniCreateRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("app_category_ids", this.appCategoryIds);
    txtParams.put("app_desc", this.appDesc);
    txtParams.put("app_english_name", this.appEnglishName);
    txtParams.put("app_name", this.appName);
    txtParams.put("app_slogan", this.appSlogan);
    txtParams.put("batch_no", this.batchNo);
    txtParams.put("service_email", this.serviceEmail);
    txtParams.put("service_phone", this.servicePhone);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOpenAgentFacetofaceSignRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("batch_no", this.batchNo);
    txtParams.put("business_license_no", this.businessLicenseNo);
    txtParams.put("date_limitation", this.dateLimitation);
    txtParams.put("long_term", this.longTerm);
    txtParams.put("mcc_code", this.mccCode);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

17 Source : AlipayOfflineMaterialImageUploadRequest.java
with Apache License 2.0
from wendal

public Map<String, String> getTextParams() {
    AlipayHashMap txtParams = new AlipayHashMap();
    txtParams.put("image_name", this.imageName);
    txtParams.put("image_pid", this.imagePid);
    txtParams.put("image_type", this.imageType);
    if (udfParams != null) {
        txtParams.putAll(this.udfParams);
    }
    return txtParams;
}

See More Examples