import * as z from "zod/v4"; /** * Request schema for pinning/unpinning deployment release */ export type PinReleaseRequest = { /** * Release ID to pin the deployment to. Set to null to resume its followed channel. */ releaseId?: string | null | undefined; }; /** @internal */ export type PinReleaseRequest$Outbound = { releaseId?: string | null | undefined; }; /** @internal */ export declare const PinReleaseRequest$outboundSchema: z.ZodType; export declare function pinReleaseRequestToJSON(pinReleaseRequest: PinReleaseRequest): string; //# sourceMappingURL=pinreleaserequest.d.ts.map