Source: server/api/options/options.model.js

  1. /**
  2. * A type representing the Options object sent from Slack.
  3. *
  4. * @see https://api.slack.com/dialogs#dynamic_select_elements_external
  5. */
  6. export type Options = {
  7. type: string,
  8. token: string,
  9. action_ts: string,
  10. team: {
  11. id: string,
  12. domain: string
  13. },
  14. user: {
  15. id: string,
  16. name: string
  17. },
  18. channel: {
  19. id: string,
  20. name: string
  21. },
  22. name: string,
  23. value: string,
  24. callback_id: string
  25. };