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