Source: schemas/integration-mapping-partner-item-slack.ts

  1. import * as schemas from '.';
  2. /**
  3. * Integration mapping mapped item schema for type Slack
  4. *
  5. * The schema for an integration mapping mapped item object for type Slack
  6. */
  7. export interface IntegrationMappingPartnerItemSlack {
  8. /**
  9. * Type of the mapped item referenced in `id`
  10. * Example: channel
  11. */
  12. type: 'channel';
  13. /**
  14. * ID of the mapped item (of type referenced in `type`)
  15. * Example: C12378991223
  16. */
  17. id: string;
  18. /**
  19. * ID of the Slack workspace with which the item is associated
  20. * Example: T12352314
  21. */
  22. slack_workspace_id?: string;
  23. /**
  24. * ID of the Slack organization with which the item is associated
  25. * Example: E1234567
  26. */
  27. slack_org_id?: string;
  28. }