import * as z from "zod/v3"; import * as components from "../components/index.js"; export type PatchAgreementByDocumentIdRequest = { accountId?: string | undefined; /** * The unique document storage identifier associated with the agreement to be updated. This ID is used to locate the agreement. */ documentId?: string | undefined; /** * JSON payload containing the fields to be updated in the agreement. */ agreement: components.Agreement; }; /** @internal */ export type PatchAgreementByDocumentIdRequest$Outbound = { accountId: string; document_id?: string | undefined; Agreement: components.Agreement$Outbound; }; /** @internal */ export declare const PatchAgreementByDocumentIdRequest$outboundSchema: z.ZodType; export declare function patchAgreementByDocumentIdRequestToJSON(patchAgreementByDocumentIdRequest: PatchAgreementByDocumentIdRequest): string; //# sourceMappingURL=patchagreementbydocumentid.d.ts.map