import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The request to affirm Agreements for an Account. */ export type AffirmAgreementsRequestCreate = { /** * Repeated string of account_agreement_ids UUID for the specific account agreement(s) being affirmed */ accountAgreementIds: Array; }; /** @internal */ export declare const AffirmAgreementsRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type AffirmAgreementsRequestCreate$Outbound = { account_agreement_ids: Array; }; /** @internal */ export declare const AffirmAgreementsRequestCreate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AffirmAgreementsRequestCreate$ { /** @deprecated use `AffirmAgreementsRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AffirmAgreementsRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AffirmAgreementsRequestCreate$Outbound` instead. */ type Outbound = AffirmAgreementsRequestCreate$Outbound; } export declare function affirmAgreementsRequestCreateToJSON(affirmAgreementsRequestCreate: AffirmAgreementsRequestCreate): string; export declare function affirmAgreementsRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=affirmagreementsrequestcreate.d.ts.map