蛋蛋星球-制度模式
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

device_request.go 580 B

3 일 전
1234567891011121314151617181920
  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. }