import * as z from "zod/v3"; import { MsTeamsUserEndpointDto, MsTeamsUserEndpointDto$Outbound } from "./msteamsuserendpointdto.js"; /** * Rich context object with id and optional data */ export type CreateMsTeamsUserEndpointDtoContext2 = { id: string; /** * Optional additional context data */ data?: { [k: string]: any; } | undefined; }; export type CreateMsTeamsUserEndpointDtoContext = CreateMsTeamsUserEndpointDtoContext2 | string; export type CreateMsTeamsUserEndpointDto = { /** * 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]: CreateMsTeamsUserEndpointDtoContext2 | 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: "ms_teams_user"; /** * MS Teams user endpoint data */ endpoint: MsTeamsUserEndpointDto; }; /** @internal */ export type CreateMsTeamsUserEndpointDtoContext2$Outbound = { id: string; data?: { [k: string]: any; } | undefined; }; /** @internal */ export declare const CreateMsTeamsUserEndpointDtoContext2$outboundSchema: z.ZodType; export declare function createMsTeamsUserEndpointDtoContext2ToJSON(createMsTeamsUserEndpointDtoContext2: CreateMsTeamsUserEndpointDtoContext2): string; /** @internal */ export type CreateMsTeamsUserEndpointDtoContext$Outbound = CreateMsTeamsUserEndpointDtoContext2$Outbound | string; /** @internal */ export declare const CreateMsTeamsUserEndpointDtoContext$outboundSchema: z.ZodType; export declare function createMsTeamsUserEndpointDtoContextToJSON(createMsTeamsUserEndpointDtoContext: CreateMsTeamsUserEndpointDtoContext): string; /** @internal */ export type CreateMsTeamsUserEndpointDto$Outbound = { identifier?: string | undefined; subscriberId: string; context?: { [k: string]: CreateMsTeamsUserEndpointDtoContext2$Outbound | string; } | undefined; integrationIdentifier: string; connectionIdentifier?: string | undefined; type: "ms_teams_user"; endpoint: MsTeamsUserEndpointDto$Outbound; }; /** @internal */ export declare const CreateMsTeamsUserEndpointDto$outboundSchema: z.ZodType; export declare function createMsTeamsUserEndpointDtoToJSON(createMsTeamsUserEndpointDto: CreateMsTeamsUserEndpointDto): string; //# sourceMappingURL=createmsteamsuserendpointdto.d.ts.map