UNPKG

@kontent-ai/management-sdk

Version:
18 lines (15 loc) 434 B
export namespace CollectionContracts { export interface ICollectionContract { id: string; name: string; codename: string; } export interface ICollectionListResponseContract { collections: ICollectionContract[]; last_modified?: string; } export interface ISetCollectionsResponseContract { collections: ICollectionContract[]; last_modified?: string; } }