Source: schemas/integration-mapping-slack-options.ts

  1. import * as schemas from '.';
  2. /**
  3. * Integration mapping options for type Slack
  4. *
  5. * The schema for an integration mapping options object for Slack type.
  6. */
  7. export interface IntegrationMappingSlackOptions {
  8. /**
  9. * Indicates whether or not channel member
  10. * access to the underlying box item
  11. * should be automatically managed.
  12. * Depending on type of channel, access is managed
  13. * through creating collaborations or shared links.
  14. * Example: true
  15. */
  16. is_access_management_disabled?: boolean;
  17. }