/** * A container for the link to the next page of the response. * @export * @interface PaginationInfoNext */ export interface PaginationInfoNext { /** * A hypertext reference to the location of the referenced resource. * @type {string} * @memberof PaginationInfoNext */ 'href'?: string; }