Sha256: d1fce655cb5892d248386864a520af519f1c38556cba0852a0ee392e0f971692

Contents?: true

Size: 1 KB

Versions: 6

Compression:

Stored size: 1 KB

Contents

# coding: utf-8
module Lanmao
  module Api
    module Money
      module InterceptWithdraw
        # 提现拦截
        #
        # @return [ Hash ] 结果集
        #   * :result [String] "S"/"F"/"P"
        #   * :request_params [Hash] 请求参数
        #   * :response [Object] 请求返回对象
        #   * :code [String] 结果代码
        #   * :msg [String] 结果信息
        #   * :data: 具体业务返回信息
        #       * :request_no [String] 交易流水号
        #       * :code [Enum] 返回码
        #       * :status [Enum]
        #       * :errorCode [String] 错误吗
        #       * :errorMessage [String] 错误描述
        #
        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

      end # module
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
lanmao-0.16.0 lib/lanmao/api/money/intercept_withdraw.rb
lanmao-0.15.0 lib/lanmao/api/money/intercept_withdraw.rb
lanmao-0.14.0 lib/lanmao/api/money/intercept_withdraw.rb
lanmao-0.13.0 lib/lanmao/api/money/intercept_withdraw.rb
lanmao-0.12.0 lib/lanmao/api/money/intercept_withdraw.rb
lanmao-0.11.0 lib/lanmao/api/money/intercept_withdraw.rb