tydata-server/temp/pay/pay.api

29 lines
530 B
Plaintext
Raw Normal View History

2025-01-10 00:09:25 +08:00
syntax = "v1"
info (
title: "产品支付服务"
desc: "产品支付服务"
author: "Liangzai"
email: "2440983361@qq.com"
)
type (
PaymentReq {
Id string `json:"id"`
PayMethod string `json:"pay_method"`
}
PaymentResp {
2025-01-21 20:00:18 +08:00
prepayData interface{} `json:"prepay_data"`
prepayId string `json:"prepay_id"`
2025-01-10 00:09:25 +08:00
OrderID int64 `json:"order_id"`
}
)
type (
IapCallbackReq {
OrderID int64 `json:"order_id" validate:"required"`
TransactionReceipt string `json:"transaction_receipt" validate:"required"`
}
)