users_common.stone 466 B

1234567891011121314151617181920
  1. namespace users_common
  2. "This namespace contains common data types used within the users namespace"
  3. alias AccountId = String(min_length=40, max_length=40)
  4. union_closed AccountType
  5. "What type of account this user has."
  6. basic
  7. "The basic account type."
  8. pro
  9. "The Dropbox Pro account type."
  10. business
  11. "The Dropbox Business account type."
  12. example default
  13. basic = null
  14. example business
  15. business = null