/** * An object containing the endpoint to retrieve a list of related resources. * @export * @interface JsonApiLinksRelatedRelated */ export interface JsonApiLinksRelatedRelated { /** * The URI of the endpoint that returns the related resources. * @type {string} * @memberof JsonApiLinksRelatedRelated */ 'href'?: string; }