Source: schemas/integration-mapping-base.ts

  1. import * as schemas from '.';
  2. /**
  3. * Integration mapping (Base)
  4. *
  5. * A base representation of an
  6. * integration mapping object.
  7. */
  8. export interface IntegrationMappingBase {
  9. /**
  10. * A unique identifier of a folder mapping
  11. * (part of a composite key together
  12. * with `integration_type`)
  13. * Example: 12345
  14. */
  15. id?: string;
  16. /**
  17. * Identifies the Box partner app,
  18. * with which the mapping is associated.
  19. * Currently only supports Slack.
  20. * (part of the composite key together with `id`)
  21. * Example: slack
  22. */
  23. integration_type?: 'slack';
  24. }