/** * 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 { EmailAddress } from "./EmailAddress"; import * as t from "io-ts"; // required attributes const DevelopmentProfileR = t.interface({ email: EmailAddress }); // optional attributes const DevelopmentProfileO = t.partial({}); export const DevelopmentProfile = t.exact( t.intersection( [DevelopmentProfileR, DevelopmentProfileO], "DevelopmentProfile" ) ); export type DevelopmentProfile = t.TypeOf;