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

  1. import * as schemas from '.';
  2. /**
  3. * Integration mapping Box item schema for type Slack
  4. *
  5. * The schema for an integration mapping Box item object for type Slack
  6. */
  7. export interface IntegrationMappingBoxItemSlack {
  8. /**
  9. * Type of the mapped item referenced in `id`
  10. * Example: folder
  11. */
  12. type: 'folder';
  13. /**
  14. * ID of the mapped item (of type referenced in `type`)
  15. * Example: 1234567891
  16. */
  17. id: string;
  18. }