UNPKG

box-node-sdk

Version:

Official SDK for Box Plaform APIs

18 lines (17 loc) 417 B
/** * Integration mapping Box item schema for type Slack * * The schema for an integration mapping Box item object for type Slack */ export interface IntegrationMappingBoxItemSlack { /** * Type of the mapped item referenced in `id` * Example: folder */ type: 'folder'; /** * ID of the mapped item (of type referenced in `type`) * Example: 1234567891 */ id: string; }