import * as z from "zod/v3"; export type PartnerManagedCompanyAcceptTermsOfServiceRequest = { /** * The user's email address on Gusto. You can retrieve the user's email via company's `/admins`, `/employees`, `/signatories`, and `/contractors` endpoints. */ email: string; /** * The IP address of the user who viewed and accepted the Terms of Service. */ ipAddress: string; /** * The user ID on your platform. */ externalUserId: string; }; /** @internal */ export type PartnerManagedCompanyAcceptTermsOfServiceRequest$Outbound = { email: string; ip_address: string; external_user_id: string; }; /** @internal */ export declare const PartnerManagedCompanyAcceptTermsOfServiceRequest$outboundSchema: z.ZodType; export declare function partnerManagedCompanyAcceptTermsOfServiceRequestToJSON(partnerManagedCompanyAcceptTermsOfServiceRequest: PartnerManagedCompanyAcceptTermsOfServiceRequest): string; //# sourceMappingURL=partnermanagedcompanyaccepttermsofservicerequest.d.ts.map