UNPKG

kentico-cloud-delivery

Version:

Official Kentico Cloud Delivery SDK

25 lines (24 loc) 478 B
export declare class Link { /** * Id of the content item */ itemId: string; /** * Codename of the content item */ codename: string; /** * Type codename of the content item */ type: string; /** * Url slug defined for the content item */ urlSlug: string; constructor(data: { itemId: string; codename: string; type: string; urlSlug: string; }); }