@kontent-ai/delivery-sdk
Version:
Official Kontent.AI Delivery API SDK
19 lines (18 loc) • 548 B
TypeScript
import { IQueryConfig } from './common/common-models';
export interface ITaxonomyGroup<TaxonomyCodename extends string> {
system: ITaxonomySystemAttributes<TaxonomyCodename>;
terms: ITaxonomyTerms[];
}
export interface ITaxonomySystemAttributes<TaxonomyCodename extends string> {
id: string;
name: string;
codename: TaxonomyCodename;
lastModified: Date;
}
export interface ITaxonomyTerms {
name: string;
codename: string;
terms: ITaxonomyTerms[];
}
export interface ITaxonomyQueryConfig extends IQueryConfig {
}