Source: schemas/integration-mapping.ts

  1. import * as schemas from '.';
  2. /**
  3. * Integration mapping
  4. *
  5. * A standard representation of an integration
  6. * mapping object.
  7. */
  8. export interface IntegrationMapping extends schemas.IntegrationMappingBase {
  9. /**
  10. * Mapping type
  11. * Example: integration_mapping
  12. */
  13. type: 'integration_mapping';
  14. /**
  15. * Mapped item object for Slack
  16. */
  17. partner_item: schemas.IntegrationMappingPartnerItemSlack;
  18. /**
  19. * The Box folder, to which the object from the
  20. * partner app domain (referenced in `partner_item_id`) is mapped
  21. */
  22. box_item: schemas.FolderMini;
  23. /**
  24. * Identifies whether the mapping has
  25. * been manually set
  26. * (as opposed to being automatically created)
  27. * Example: true
  28. */
  29. is_manually_created?: boolean;
  30. /**
  31. * Integration mapping options for Slack
  32. * Example: [object Object]
  33. */
  34. options?: schemas.IntegrationMappingSlackOptions;
  35. /**
  36. * An object representing the user who
  37. * created the integration mapping
  38. */
  39. created_by?: schemas.UserIntegrationMappings;
  40. /**
  41. * The user who
  42. * last modified the integration mapping
  43. */
  44. modified_by?: schemas.UserIntegrationMappings;
  45. /**
  46. * When the integration mapping object was created
  47. * Example: 2012-12-12T10:53:43-08:00
  48. */
  49. created_at?: string;
  50. /**
  51. * When the integration mapping object was last modified
  52. * Example: 2012-12-12T10:53:43-08:00
  53. */
  54. modified_at?: string;
  55. }