蛋蛋星球-制度模式
Вы не можете выбрать более 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. }