kentico-cloud-delivery
Version:
Official Kentico Cloud Delivery SDK
40 lines (39 loc) • 797 B
TypeScript
export declare class ContentItemSystemAttributes {
/**
* Id of the item
*/
id: string;
/**
* Name of the item
*/
name: string;
/**
* Codename of the item
*/
codename: string;
/**
* Codename of the type this item is using
*/
type: string;
/**
* Date when the item was last modified
*/
lastModified: Date;
/**
* Codename of the language
*/
language: string;
/**
* Array of sitemap locatoins
*/
sitemapLocations: string[];
constructor(data: {
id: string;
name: string;
codename: string;
type: string;
lastModified: Date;
language: string;
sitemapLocations: string[];
});
}