UNPKG

@docusign/iam-sdk

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.

19 lines 728 B
import * as z from "zod/v3"; export type GetAgreementRequest = { accountId?: string | undefined; agreementId?: string | undefined; /** * Include linked data from external systems that correlate with this agreement. */ includeLinkedData?: boolean | undefined; }; /** @internal */ export type GetAgreementRequest$Outbound = { accountId: string; agreementId: string; include_linked_data: boolean; }; /** @internal */ export declare const GetAgreementRequest$outboundSchema: z.ZodType<GetAgreementRequest$Outbound, z.ZodTypeDef, GetAgreementRequest>; export declare function getAgreementRequestToJSON(getAgreementRequest: GetAgreementRequest): string; //# sourceMappingURL=getagreement.d.ts.map