audience.go 391 B

123456789101112
  1. package jpush
  2. // Audience .
  3. type Audience struct {
  4. Tag interface{} `json:"tag,omitempty"`
  5. TagAnd interface{} `json:"tag_and,omitempty"`
  6. TagNot interface{} `json:"tag_not,omitempty"`
  7. Alias interface{} `json:"alias,omitempty"`
  8. RegID interface{} `json:"registration_id,omitempty"`
  9. Segment interface{} `json:"segment,omitempty"`
  10. AbTest interface{} `json:"abtest,omitempty"`
  11. }