/** * 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 GroupR = t.interface({ display_name: t.string }); // optional attributes const GroupO = t.partial({ id: t.string, name: t.string }); export const Group = t.exact(t.intersection([GroupR, GroupO], "Group")); export type Group = t.TypeOf;