/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: b42a085dbf31 */ import * as z from "zod/v4"; export type SlackIntegrationChannelsGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type SlackIntegrationChannelsRequest = {}; /** @internal */ export type SlackIntegrationChannelsRequest$Outbound = {}; /** @internal */ export const SlackIntegrationChannelsRequest$outboundSchema: z.ZodType< SlackIntegrationChannelsRequest$Outbound, SlackIntegrationChannelsRequest > = z.object({}); export function slackIntegrationChannelsRequestToJSON( slackIntegrationChannelsRequest: SlackIntegrationChannelsRequest, ): string { return JSON.stringify( SlackIntegrationChannelsRequest$outboundSchema.parse( slackIntegrationChannelsRequest, ), ); }