/** * 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 { BlockedInboxOrChannel } from "./BlockedInboxOrChannel"; import * as t from "io-ts"; /** * All the notification channels blocked by the user. * Each channel is related to a specific service (sender). */ // additional attributes export const BlockedInboxOrChannels = t.dictionary( t.string, t.readonlyArray(BlockedInboxOrChannel, "array of BlockedInboxOrChannel"), "BlockedInboxOrChannels" ); export type BlockedInboxOrChannels = t.TypeOf;