/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { PhoneEndpointDto, PhoneEndpointDto$Outbound, PhoneEndpointDto$outboundSchema, } from "./phoneendpointdto.js"; import { SlackChannelEndpointDto, SlackChannelEndpointDto$Outbound, SlackChannelEndpointDto$outboundSchema, } from "./slackchannelendpointdto.js"; import { SlackUserEndpointDto, SlackUserEndpointDto$Outbound, SlackUserEndpointDto$outboundSchema, } from "./slackuserendpointdto.js"; import { WebhookEndpointDto, WebhookEndpointDto$Outbound, WebhookEndpointDto$outboundSchema, } from "./webhookendpointdto.js"; /** * Updated endpoint data. The structure must match the existing channel endpoint type. */ export type UpdateChannelEndpointRequestDtoEndpoint = | SlackChannelEndpointDto | SlackUserEndpointDto | WebhookEndpointDto | PhoneEndpointDto; export type UpdateChannelEndpointRequestDto = { /** * Updated endpoint data. The structure must match the existing channel endpoint type. */ endpoint: | SlackChannelEndpointDto | SlackUserEndpointDto | WebhookEndpointDto | PhoneEndpointDto; }; /** @internal */ export type UpdateChannelEndpointRequestDtoEndpoint$Outbound = | SlackChannelEndpointDto$Outbound | SlackUserEndpointDto$Outbound | WebhookEndpointDto$Outbound | PhoneEndpointDto$Outbound; /** @internal */ export const UpdateChannelEndpointRequestDtoEndpoint$outboundSchema: z.ZodType< UpdateChannelEndpointRequestDtoEndpoint$Outbound, z.ZodTypeDef, UpdateChannelEndpointRequestDtoEndpoint > = z.union([ SlackChannelEndpointDto$outboundSchema, SlackUserEndpointDto$outboundSchema, WebhookEndpointDto$outboundSchema, PhoneEndpointDto$outboundSchema, ]); export function updateChannelEndpointRequestDtoEndpointToJSON( updateChannelEndpointRequestDtoEndpoint: UpdateChannelEndpointRequestDtoEndpoint, ): string { return JSON.stringify( UpdateChannelEndpointRequestDtoEndpoint$outboundSchema.parse( updateChannelEndpointRequestDtoEndpoint, ), ); } /** @internal */ export type UpdateChannelEndpointRequestDto$Outbound = { endpoint: | SlackChannelEndpointDto$Outbound | SlackUserEndpointDto$Outbound | WebhookEndpointDto$Outbound | PhoneEndpointDto$Outbound; }; /** @internal */ export const UpdateChannelEndpointRequestDto$outboundSchema: z.ZodType< UpdateChannelEndpointRequestDto$Outbound, z.ZodTypeDef, UpdateChannelEndpointRequestDto > = z.object({ endpoint: z.union([ SlackChannelEndpointDto$outboundSchema, SlackUserEndpointDto$outboundSchema, WebhookEndpointDto$outboundSchema, PhoneEndpointDto$outboundSchema, ]), }); export function updateChannelEndpointRequestDtoToJSON( updateChannelEndpointRequestDto: UpdateChannelEndpointRequestDto, ): string { return JSON.stringify( UpdateChannelEndpointRequestDto$outboundSchema.parse( updateChannelEndpointRequestDto, ), ); }