github.com/bububa/oceanengine/marketing-api@v0.0.0-20210315120513-0b953137f7a6/enum/track_os.go (about)

     1  package enum
     2  
     3  type TrackOS = int
     4  
     5  const (
     6  	Track_ANDROID TrackOS = 0
     7  	Track_IOS     TrackOS = 1
     8  	Track_UNKNOWN TrackOS = 3
     9  )