@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
23 lines • 1.06 kB
TypeScript
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<PatchAgreementByDocumentIdRequest$Outbound, z.ZodTypeDef, PatchAgreementByDocumentIdRequest>;
export declare function patchAgreementByDocumentIdRequestToJSON(patchAgreementByDocumentIdRequest: PatchAgreementByDocumentIdRequest): string;
//# sourceMappingURL=patchagreementbydocumentid.d.ts.map