UNPKG

@itwin/insights-client

Version:

Insights client for the iTwin platform

33 lines 620 B
/** * Hyperlink container. * @export * @interface Link */ export interface Link { /** * Hyperlink to the specific entity. * @type {string} * @memberof Link */ href: string; } /** * URLs for redoing the current request and/or getting the next page of results if applicable. * @export * @interface PagedResponseLinks */ export interface PagedResponseLinks { /** * * @type {Link} * @memberof PagedResponseLinks */ next?: Link; /** * * @type {Link} * @memberof PagedResponseLinks */ self: Link; } //# sourceMappingURL=Links.d.ts.map