import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetTeamRequest = { orgId: string; teamId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type GetTeamTeam = { id: string; name: string; organizationId: string; createdAt: string; updatedAt: string; }; /** * OK */ export type GetTeamResponseBody = { team: GetTeamTeam; }; /** @internal */ export declare const GetTeamRequest$inboundSchema: z.ZodType; /** @internal */ export type GetTeamRequest$Outbound = { orgId: string; teamId: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetTeamRequest$outboundSchema: z.ZodType; export declare function getTeamRequestToJSON(getTeamRequest: GetTeamRequest): string; export declare function getTeamRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetTeamTeam$inboundSchema: z.ZodType; /** @internal */ export type GetTeamTeam$Outbound = { id: string; name: string; organizationId: string; createdAt: string; updatedAt: string; }; /** @internal */ export declare const GetTeamTeam$outboundSchema: z.ZodType; export declare function getTeamTeamToJSON(getTeamTeam: GetTeamTeam): string; export declare function getTeamTeamFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetTeamResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetTeamResponseBody$Outbound = { team: GetTeamTeam$Outbound; }; /** @internal */ export declare const GetTeamResponseBody$outboundSchema: z.ZodType; export declare function getTeamResponseBodyToJSON(getTeamResponseBody: GetTeamResponseBody): string; export declare function getTeamResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getteam.d.ts.map