14 lines
348 B
Go
14 lines
348 B
Go
package marketing
|
|
|
|
type SendReq struct {
|
|
ActivityId *string `json:"activity_id"`
|
|
StockId *string `json:"stock_id"`
|
|
OutRequestNo *string `json:"out_request_no"`
|
|
Appid *string `json:"appid"`
|
|
StockCreatorMchId *string `json:"stock_creator_mchid"`
|
|
}
|
|
|
|
type SendResp struct {
|
|
CouponId *string `json:"coupon_id"`
|
|
}
|