import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { HTTPMetadata } from "../components/httpmetadata.js"; import { PartnerManagedCompanyAcceptTermsOfServiceRequest, PartnerManagedCompanyAcceptTermsOfServiceRequest$Outbound } from "../components/partnermanagedcompanyaccepttermsofservicerequest.js"; import { PartnerManagedCompanyTermsOfServiceResponse } from "../components/partnermanagedcompanytermsofserviceresponse.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export declare const PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceHeaderXGustoAPIVersion: { readonly TwoThousandAndTwentyFiveMinus06Minus15: "2025-06-15"; }; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export type PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceHeaderXGustoAPIVersion = ClosedEnum; export type PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceRequest = { /** * The UUID of the company */ companyUuid: string; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ xGustoAPIVersion?: PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceHeaderXGustoAPIVersion | undefined; partnerManagedCompanyAcceptTermsOfServiceRequest: PartnerManagedCompanyAcceptTermsOfServiceRequest; }; export type PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceResponse = { httpMeta: HTTPMetadata; /** * Example response */ partnerManagedCompanyTermsOfServiceResponse?: PartnerManagedCompanyTermsOfServiceResponse | undefined; }; /** @internal */ export declare const PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceRequest$Outbound = { company_uuid: string; "X-Gusto-API-Version": string; "Partner-Managed-Company-Accept-Terms-Of-Service-Request": PartnerManagedCompanyAcceptTermsOfServiceRequest$Outbound; }; /** @internal */ export declare const PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceRequest$outboundSchema: z.ZodType; export declare function postPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceRequestToJSON(postPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceRequest: PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceRequest): string; /** @internal */ export declare const PostPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceResponse$inboundSchema: z.ZodType; export declare function postPartnerManagedCompaniesCompanyUuidAcceptTermsOfServiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postpartnermanagedcompaniescompanyuuidaccepttermsofservice.d.ts.map