Sha256: 266d990bf9c10270bbd0cc2262c014c40e2e38fe19c01f9ae4ec8bcc84935be4

Contents?: true

Size: 779 Bytes

Versions: 1

Compression:

Stored size: 779 Bytes

Contents

# coding: utf-8
module Lanmao
  module Api
    module Trade
      module ConfirmCheckfile
        # 对账文件确认
        #
        # @return [ Hash ] 结果集
        #   * :result [String] "S"/"F"/"P"
        #   * :request_params [Hash] 请求参数
        #   * :response [Object] 请求返回对象
        #   * :code [String] 结果代码
        #   * :msg [String] 结果信息
        #   * :data: 具体业务返回信息
        #       * :url [String] 支付 url
        #       * :order_no [String] 订单号
        #       * :amount [Number] 金额
        #
        def confirm_checkfile()

          params = {
          }

          res = operate_post()

          Lanmao.logger.info res

          res
        end

      end # module
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lanmao-0.2.0 lib/lanmao/api/trade/confirm_checkfile.rb