import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Describes the acceptance of the Terms of Service. All data is required, and must be from the user. */ export type ManualTermsOfServiceUpdate = { /** * The date and time the terms of service were accepted. */ acceptedDate?: Date | undefined; /** * The IP address from which the terms of service were accepted. */ acceptedIP?: string | undefined; /** * The user-agent of the user making the request. */ acceptedUserAgent?: string | undefined; acceptedDomain?: string | undefined; }; /** @internal */ export declare const ManualTermsOfServiceUpdate$inboundSchema: z.ZodType; /** @internal */ export type ManualTermsOfServiceUpdate$Outbound = { acceptedDate?: string | undefined; acceptedIP?: string | undefined; acceptedUserAgent?: string | undefined; acceptedDomain?: string | undefined; }; /** @internal */ export declare const ManualTermsOfServiceUpdate$outboundSchema: z.ZodType; export declare function manualTermsOfServiceUpdateToJSON(manualTermsOfServiceUpdate: ManualTermsOfServiceUpdate): string; export declare function manualTermsOfServiceUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=manualtermsofserviceupdate.d.ts.map