/** * Do not edit this file it is auto-generated by io-utils / gen-api-models. * See https://github.com/pagopa/io-utils */ /* tslint:disable */ import * as t from "io-ts"; // required attributes const ServerInfoR = t.interface({ version: t.string }); // optional attributes const ServerInfoO = t.partial({}); export const ServerInfo = t.exact( t.intersection([ServerInfoR, ServerInfoO], "ServerInfo") ); export type ServerInfo = t.TypeOf;