mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
15 lines
406 B
Go
15 lines
406 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// ArgMailCouponCodeCreate mail coupon code create args.
|
||
|
|
type ArgMailCouponCodeCreate struct {
|
||
|
|
Mid int64 `json:"mid"`
|
||
|
|
Uname string `json:"uname"`
|
||
|
|
CouponID string `json:"couponId"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// MailCouponCodeCreateResp mail code create resp.
|
||
|
|
type MailCouponCodeCreateResp struct {
|
||
|
|
CouponCodeID string `json:"couponCodeId"`
|
||
|
|
RemainReceiveTimes int64 `json:"remainReceiveTimes"`
|
||
|
|
}
|