import * as z from "zod/v3"; import { ChannelCredentials, ChannelCredentials$Outbound } from "./channelcredentials.js"; import { ChatOrPushProviderEnum } from "./chatorpushproviderenum.js"; export type UpdateSubscriberChannelRequestDto = { /** * The provider identifier for the credentials */ providerId: ChatOrPushProviderEnum; /** * The integration identifier */ integrationIdentifier?: string | undefined; /** * Credentials payload for the specified provider */ credentials: ChannelCredentials; }; /** @internal */ export type UpdateSubscriberChannelRequestDto$Outbound = { providerId: string; integrationIdentifier?: string | undefined; credentials: ChannelCredentials$Outbound; }; /** @internal */ export declare const UpdateSubscriberChannelRequestDto$outboundSchema: z.ZodType; export declare function updateSubscriberChannelRequestDtoToJSON(updateSubscriberChannelRequestDto: UpdateSubscriberChannelRequestDto): string; //# sourceMappingURL=updatesubscriberchannelrequestdto.d.ts.map