import * as z from "zod/v3"; import * as components from "../components/index.js"; export type PatchAgreementRequest = { accountId?: string | undefined; agreementId?: string | undefined; /** * JSON payload containing the fields to be updated in the agreement. */ agreement: components.Agreement; }; /** @internal */ export type PatchAgreementRequest$Outbound = { accountId: string; agreementId: string; Agreement: components.Agreement$Outbound; }; /** @internal */ export declare const PatchAgreementRequest$outboundSchema: z.ZodType; export declare function patchAgreementRequestToJSON(patchAgreementRequest: PatchAgreementRequest): string; //# sourceMappingURL=patchagreement.d.ts.map