Beispiel #1
0
        /**
         * Description: 目前用于浙江票据的计费推送,其他主站环境还是继续使用msg。
         * Summary: 计费推送
         */
        public async Task <PushChargeResponse> PushChargeAsync(PushChargeRequest request)
        {
            AlibabaCloud.TeaUtil.Models.RuntimeOptions runtime = new AlibabaCloud.TeaUtil.Models.RuntimeOptions();
            Dictionary <string, string> headers = new Dictionary <string, string>()
            {
            };

            return(await PushChargeExAsync(request, headers, runtime));
        }
Beispiel #2
0
        /**
         * Description: 目前用于浙江票据的计费推送,其他主站环境还是继续使用msg。
         * Summary: 计费推送
         */
        public PushChargeResponse PushCharge(PushChargeRequest request)
        {
            AlibabaCloud.TeaUtil.Models.RuntimeOptions runtime = new AlibabaCloud.TeaUtil.Models.RuntimeOptions();
            Dictionary <string, string> headers = new Dictionary <string, string>()
            {
            };

            return(PushChargeEx(request, headers, runtime));
        }
Beispiel #3
0
 /**
  * Description: 目前用于浙江票据的计费推送,其他主站环境还是继续使用msg。
  * Summary: 计费推送
  */
 public async Task <PushChargeResponse> PushChargeExAsync(PushChargeRequest request, Dictionary <string, string> headers, AlibabaCloud.TeaUtil.Models.RuntimeOptions runtime)
 {
     AlibabaCloud.TeaUtil.Common.ValidateModel(request);
     return(TeaModel.ToObject <PushChargeResponse>(await DoRequestAsync("1.0", "blockchain.tax.charge.push", "HTTPS", "POST", "/gateway.do", request.ToMap(), headers, runtime)));
 }