UNPKG

box-node-sdk

Version:

Official SDK for Box Plaform APIs

20 lines (19 loc) 415 B
/** * File version (Base) * * The bare basic representation of a file version, the minimal * amount of fields returned when using the `fields` query * parameter. */ export interface FileVersionBase { /** * The unique identifier that represent a file version. * Example: 12345 */ id: string; /** * `file_version` * Example: file_version */ type: 'file_version'; }