Module: Lanmao::Api::Money::InterceptWithdraw

Defined in:
lib/lanmao/api/money/intercept_withdraw.rb

Instance Method Summary collapse

Instance Method Details

#intercept_withdraw(flow_id, pre_transaction_no) ⇒ Hash

提现拦截



21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/lanmao/api/money/intercept_withdraw.rb', line 21

def intercept_withdraw(flow_id, pre_transaction_no)

  service = "INTERCEPT_WITHDRAW"

  params = {
    requestNo: flow_id,
    withdrawRequestNo: pre_transaction_no
  }

  res = operate_post(:operate, service, params, :service)

  res
end