import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ManualTermsOfService, ManualTermsOfService$Outbound } from "./manualtermsofservice.js"; export type TermsOfServicePayload = { token?: string | undefined; /** * Describes the acceptance of the Terms of Service. All data is required, and must be from the user. */ manual?: ManualTermsOfService | undefined; }; /** @internal */ export declare const TermsOfServicePayload$inboundSchema: z.ZodType; /** @internal */ export type TermsOfServicePayload$Outbound = { token?: string | undefined; manual?: ManualTermsOfService$Outbound | undefined; }; /** @internal */ export declare const TermsOfServicePayload$outboundSchema: z.ZodType; export declare function termsOfServicePayloadToJSON(termsOfServicePayload: TermsOfServicePayload): string; export declare function termsOfServicePayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=termsofservicepayload.d.ts.map