Skip to content

Commit

Permalink
銀行振込(バーチャル口座 あおぞら)の追加
Browse files Browse the repository at this point in the history
  • Loading branch information
ken1flan committed Oct 3, 2023
1 parent 634d06e commit d7c9569
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions lib/gmo/shop_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,16 @@ def entry_tran_pay_easy(options = {})
post_request name, options
end

# 【銀行振込(バーチャル口座 あおぞら)】
# 取引登録
# オーダーIDを指定して取引を登録します。
def entry_tran_ganb(options = {})
name = "EntryTranGANB.idPass"
required = [:order_id, :amount]
assert_required_options(required, options)
post_request name, options
end

# 【LINE Pay決済】
# 20.1.2.1. 取引登録
# これ以降の決済取引で必要となる取引IDと取引パスワードの発行を行い、取引を開始します。
Expand Down Expand Up @@ -322,6 +332,16 @@ def exec_tran_pay_easy(options = {})
post_request name, options
end

# 【銀行振込(バーチャル口座 あおぞら)】
# 決済実行
# 登録された取引に対してバーチャル口座を発行します。
def exec_tran_ganb(options = {})
name = "ExecTranGANB.idPass"
required = [:access_id, :access_pass, :order_id]
assert_required_options(required, options)
post_request name, options
end

# 【LINE Pay決済】
# 20.1.2.2. 決済実行
def exec_tran_linepay(options = {})
Expand Down

0 comments on commit d7c9569

Please sign in to comment.