/** * An object containing the hyperlink to the referenced resource. * @export * @interface JsonApiLink */ export interface JsonApiLink { /** * A hypertext reference to the location of the referenced resource. * @type {string} * @memberof JsonApiLink */ 'href': string; }