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