GS2-Money2 Script トリガーリファレンス
GS2-Money2で定義されている、拡張スクリプトを呼び出すイベントトリガーのリファレンス
deposit
ウォレット残高加算実行前にGS2-Scriptを呼び出すイベントトリガー
Request
| 型 | 説明 |
---|
namespace | Namespace | ネームスペース |
oldWallet | Wallet | 加算前のウォレット |
newWallet | Wallet | 加算後のウォレット |
transactions | DepositTransaction[] | 発生したトランザクションリスト |
count | int | 残高の加算量 |
Result
| 型 | 必須 | デフォルト | 値の制限 | 説明 |
---|
permit | bool | ✓ | | | ウォレット残高加算を許可するか |
実装例
namespace = args.namespace
oldWallet = args.oldWallet
newWallet = args.newWallet
transactions = args.transactions
count = args.count
result = {
permit=permit
}
depositDone
ウォレット残高加算実行後にGS2-Scriptを呼び出すイベントトリガー
Request
| 型 | 説明 |
---|
namespace | Namespace | ネームスペース |
oldWallet | Wallet | 加算前のウォレット |
newWallet | Wallet | 加算後のウォレット |
transactions | DepositTransaction[] | 発生したトランザクションリスト |
count | int | 残高の加算量 |
Result
実装例
namespace = args.namespace
oldWallet = args.oldWallet
newWallet = args.newWallet
transactions = args.transactions
count = args.count
result = {
}
withdraw
ウォレット残高消費実行前にGS2-Scriptを呼び出すイベントトリガー
Request
| 型 | 説明 |
---|
namespace | Namespace | ネームスペース |
oldWallet | Wallet | 消費前のウォレット |
newWallet | Wallet | 消費後のウォレット |
transactions | DepositTransaction[] | 発生したトランザクションリスト |
count | int | 残高の消費量 |
Result
| 型 | 必須 | デフォルト | 値の制限 | 説明 |
---|
permit | bool | ✓ | | | ウォレット残高の消費を許可するか |
実装例
namespace = args.namespace
oldWallet = args.oldWallet
newWallet = args.newWallet
transactions = args.transactions
count = args.count
result = {
permit=permit
}
withdrawDone
ウォレット残高消費実行後にGS2-Scriptを呼び出すイベントトリガー
Request
| 型 | 説明 |
---|
namespace | Namespace | ネームスペース |
oldWallet | Wallet | 消費前のウォレット |
newWallet | Wallet | 消費後のウォレット |
transactions | DepositTransaction[] | 発生したトランザクションリスト |
count | int | 残高の消費量 |
Result
実装例
namespace = args.namespace
oldWallet = args.oldWallet
newWallet = args.newWallet
transactions = args.transactions
count = args.count
result = {
}