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

21 行
580 B

  1. package jpush
  2. type DeviceSettingRequest struct {
  3. Tags *DeviceSettingRequestTags `json:"tags"`
  4. Alias string `json:"alias"`
  5. Mobile string `json:"mobile"`
  6. }
  7. type DeviceSettingEmptyTagsRequest struct {
  8. Tags string `json:"tags"`
  9. Alias string `json:"alias"`
  10. Mobile string `json:"mobile"`
  11. }
  12. type DeviceSettingRequestTags struct {
  13. Add []string `json:"add,omitempty"`
  14. Remove []string `json:"remove,omitempty"`
  15. }
  16. type DeviceBindTagsRequest struct {
  17. Add []string `json:"add,omitempty"`
  18. Remove []string `json:"remove,omitempty"`
  19. }