@kontent-ai/management-sdk
Version:
Official Kontent.ai management SDK
16 lines (15 loc) • 419 B
TypeScript
export declare namespace CollectionContracts {
interface ICollectionContract {
id: string;
name: string;
codename: string;
}
interface ICollectionListResponseContract {
collections: ICollectionContract[];
last_modified?: string;
}
interface ISetCollectionsResponseContract {
collections: ICollectionContract[];
last_modified?: string;
}
}