/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type MsTeamsChannelEndpointDto = { /** * MS Teams team ID */ teamId: string; /** * MS Teams channel ID */ channelId: string; }; /** @internal */ export type MsTeamsChannelEndpointDto$Outbound = { teamId: string; channelId: string; }; /** @internal */ export const MsTeamsChannelEndpointDto$outboundSchema: z.ZodType< MsTeamsChannelEndpointDto$Outbound, z.ZodTypeDef, MsTeamsChannelEndpointDto > = z.object({ teamId: z.string(), channelId: z.string(), }); export function msTeamsChannelEndpointDtoToJSON( msTeamsChannelEndpointDto: MsTeamsChannelEndpointDto, ): string { return JSON.stringify( MsTeamsChannelEndpointDto$outboundSchema.parse(msTeamsChannelEndpointDto), ); }