box-node-sdk
Version:
Official SDK for Box Plaform APIs
19 lines (18 loc) • 349 B
TypeScript
/**
* Enterprise (Base)
*
* A mini representation of a enterprise, used when
* nested within another resource.
*/
export interface EnterpriseBase {
/**
* The unique identifier for this enterprise
* Example: 1910967
*/
id?: string;
/**
* `enterprise`
* Example: enterprise
*/
type?: 'enterprise';
}