import * as z from "zod/v3"; import { SlackUserEndpointDto, SlackUserEndpointDto$Outbound } from "./slackuserendpointdto.js"; /** * Rich context object with id and optional data */ export type CreateSlackUserEndpointDtoContext2 = { id: string; /** * Optional additional context data */ data?: { [k: string]: any; } | undefined; }; export type CreateSlackUserEndpointDtoContext = CreateSlackUserEndpointDtoContext2 | string; export type CreateSlackUserEndpointDto = { /** * The unique identifier for the channel endpoint. If not provided, one will be generated automatically. */ identifier?: string | undefined; /** * The subscriber ID to which the channel endpoint is linked */ subscriberId: string; context?: { [k: string]: CreateSlackUserEndpointDtoContext2 | string; } | undefined; /** * The identifier of the integration to use for this channel endpoint. */ integrationIdentifier: string; /** * The identifier of the channel connection to use for this channel endpoint. */ connectionIdentifier?: string | undefined; /** * Type of channel endpoint */ type: "slack_user"; /** * Slack user endpoint data */ endpoint: SlackUserEndpointDto; }; /** @internal */ export type CreateSlackUserEndpointDtoContext2$Outbound = { id: string; data?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const CreateSlackUserEndpointDtoContext2$outboundSchema: z.ZodType; export declare function createSlackUserEndpointDtoContext2ToJSON(createSlackUserEndpointDtoContext2: CreateSlackUserEndpointDtoContext2): string; /** @internal */ export type CreateSlackUserEndpointDtoContext$Outbound = CreateSlackUserEndpointDtoContext2$Outbound | string; /** @internal */ export declare const CreateSlackUserEndpointDtoContext$outboundSchema: z.ZodType; export declare function createSlackUserEndpointDtoContextToJSON(createSlackUserEndpointDtoContext: CreateSlackUserEndpointDtoContext): string; /** @internal */ export type CreateSlackUserEndpointDto$Outbound = { identifier?: string | undefined; subscriberId: string; context?: { [k: string]: CreateSlackUserEndpointDtoContext2$Outbound | string; } | undefined; integrationIdentifier: string; connectionIdentifier?: string | undefined; type: "slack_user"; endpoint: SlackUserEndpointDto$Outbound; }; /** @internal */ export declare const CreateSlackUserEndpointDto$outboundSchema: z.ZodType; export declare function createSlackUserEndpointDtoToJSON(createSlackUserEndpointDto: CreateSlackUserEndpointDto): string; //# sourceMappingURL=createslackuserendpointdto.d.ts.map