@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
20 lines • 793 B
TypeScript
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<PatchAgreementRequest$Outbound, z.ZodTypeDef, PatchAgreementRequest>;
export declare function patchAgreementRequestToJSON(patchAgreementRequest: PatchAgreementRequest): string;
//# sourceMappingURL=patchagreement.d.ts.map