Sha256: e09a39ef3f2d47e545960e4cd2d1ac6780442063b6039abedcf13c2e59f78f9d
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 module Reapal module Form module CloseAccountForm # 1.11 取消签约 # # @param flow_id [String] 流水号 # @param contract [String] 用户协议 # @param return_url [String] 回调 url # @param notify_url [String] 通知 url # @param busway [String] 设备通道,默认手机端。00:PC端;01:手机端;02:Pad端;03:其它 # # @return [ Hash ] 结果集 # * :form_method # * :method # * :url # * :form_data # * :merchant_id # * :encryptkey # * :data # def close_account_form(flow_id, contract, return_url, notify_url, busway='01') service = 'reapal.trust.closeAccount' post_path = '/reagw/agreement/closeAccountApply.htm' params = { orderNo: flow_id, contracts: contract, busway: busway, returnUrl: return_url, notifyUrl: notify_url, applyTime: Time.now.strftime('%Y-%m-%d %H:%M:%S'), } get_form_data(service, params, post_path) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
reapal-0.11.0 | lib/reapal/form/close_account_form.rb |
reapal-0.10.1 | lib/reapal/form/close_account_form.rb |
reapal-0.10.0 | lib/reapal/form/close_account_form.rb |