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. */ export type TermsOfService = { /** * 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; }; /** @internal */ export declare const TermsOfService$inboundSchema: z.ZodType; /** @internal */ export type TermsOfService$Outbound = { acceptedDate: string; acceptedIP: string; }; /** @internal */ export declare const TermsOfService$outboundSchema: z.ZodType; export declare function termsOfServiceToJSON(termsOfService: TermsOfService): string; export declare function termsOfServiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=termsofservice.d.ts.map