Files
exchange_go/common/global/coingate.go
2025-02-06 11:14:33 +08:00

26 lines
1.0 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package global
const (
//内部生成默认状态
COINGATE_STATUS_DEFAULT = "default"
//新创建的发票。购物者尚未选择付款货币。
COINGATE_STATUS_NEW = "new"
// 购物者已选择支付货币。正在等待付款
COINGATE_STATUS_PENDING = "pending"
//购物者已转账支付发票款项。正在等待区块链网络确认。
COINGATE_STATUS_CONFIRMING = "confirming"
//付款已由网络确认,并记入商家账户。购买的商品/服务可以安全地交付给购物者。
COINGATE_STATUS_PAID = "paid"
//由于 AML/CTF 合规原因,付款被网络拒绝或被标记为无效
COINGATE_STATUS_INVALID = "invalid"
//购物者未在规定时间内付款默认值20 分钟),因此发票已过期。
COINGATE_STATUS_EXPIRED = "expired"
//购物者取消了发票。
COINGATE_STATUS_CANCELED = "canceled"
//付款已退还给购物者
COINGATE_STATUS_REFUNDED = "refunded"
//部分付款已退还给购物者。
COINGATE_STATUS_PARTIALLY_REFUNDED = "partially_refunded"
)