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 ManualTermsOfService = { /** * The date and time the terms of service were accepted. */ acceptedDate: Date; /** * The IP address from which the terms of service were accepted. */ acceptedIP: string; /** * The user-agent of the user making the request. */ acceptedUserAgent: string; acceptedDomain: string; }; /** @internal */ export declare const ManualTermsOfService$inboundSchema: z.ZodType; /** @internal */ export type ManualTermsOfService$Outbound = { acceptedDate: string; acceptedIP: string; acceptedUserAgent: string; acceptedDomain: string; }; /** @internal */ export declare const ManualTermsOfService$outboundSchema: z.ZodType; export declare function manualTermsOfServiceToJSON(manualTermsOfService: ManualTermsOfService): string; export declare function manualTermsOfServiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=manualtermsofservice.d.ts.map