@kontent-ai/management-sdk
Version:
Official Kontent.ai management SDK
18 lines (15 loc) • 451 B
text/typescript
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;
}
}