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; export declare function getAgreementRequestToJSON(getAgreementRequest: GetAgreementRequest): string; //# sourceMappingURL=getagreement.d.ts.map