kentico-cloud-delivery
Version:
Official Kentico Cloud Delivery SDK
25 lines (24 loc) • 454 B
TypeScript
export declare class ContentTypeSystemAttributes {
/**
* Id of the type
*/
id: string;
/**
* Name of the type
*/
name: string;
/**
* Codename of the type
*/
codename: string;
/**
* Date of last modification
*/
lastModified: Date;
constructor(data: {
id: string;
name: string;
codename: string;
lastModified: Date;
});
}