/** @description URL and content type information for an web resource. */
export interface LinkInformation {
    /** @description URL of link. */
    href: string;
    /** @description Content type of linked data. */
    type: string;
}
