/** * Do not edit this file it is auto-generated by io-utils / gen-api-models. * See https://github.com/pagopa/io-utils */ /* eslint-disable */ import * as t from "io-ts"; /** * Pagination response parameters. */ // required attributes const PaginationResponseR = t.interface({}); // optional attributes const PaginationResponseO = t.partial({ prev: t.string, next: t.string }); export const PaginationResponse = t.exact( t.intersection( [PaginationResponseR, PaginationResponseO], "PaginationResponse" ) ); export type PaginationResponse = t.TypeOf;