蛋蛋星球-客户端
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

md_playlet.go 964 B

1週間前
1週間前
1234567891011121314151617181920212223
  1. package md
  2. type PlayletBaseData struct {
  3. Reward string `json:"reward" example:"单次奖励"`
  4. Total string `json:"total" example:"可领取总次数"`
  5. FirstCount string `json:"first_count" example:"首次可观看集数"`
  6. SecondCount string `json:"second_count" example:"看一次广告解锁集数"`
  7. Leave string `json:"leave" example:"剩余次数"`
  8. Sum string `json:"sum" example:"奖励总数"`
  9. CoinName string `json:"coin_name" example:"积分名称"`
  10. DayOneCount string `json:"day_one_count" example:"每天每个短剧解锁次数"`
  11. AndroidAdvId string `json:"android_adv_id" example:"安卓激励视频广告位"`
  12. IosAdvId string `json:"ios_adv_id" example:"iOS激励视频广告位"`
  13. }
  14. type PlayletRewardRequest struct {
  15. Id string `json:"id" example:"广告id"`
  16. }
  17. type PlayletUnlockRequest struct {
  18. Id string `json:"id" example:"短剧id"`
  19. }
  20. type PlayletUnlockResp struct {
  21. Num string `json:"num"`
  22. }