import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetRepoRequest = { /** * The organization URL slug. */ org: string; /** * The repository name (URL label). */ name: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const GetRepoRequest$inboundSchema: z.ZodType; /** @internal */ export type GetRepoRequest$Outbound = { org: string; name: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetRepoRequest$outboundSchema: z.ZodType; export declare function getRepoRequestToJSON(getRepoRequest: GetRepoRequest): string; export declare function getRepoRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getrepo.d.ts.map