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 { PartnerManagedCompanyRetrieveTermsOfServiceRequest, PartnerManagedCompanyRetrieveTermsOfServiceRequest$Outbound } from "../components/partnermanagedcompanyretrievetermsofservicerequest.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 PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceHeaderXGustoAPIVersion: { readonly TwoThousandAndTwentySixMinus06Minus15: "2026-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 PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceHeaderXGustoAPIVersion = ClosedEnum; export type PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest = { /** * 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?: PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyUuid: string; partnerManagedCompanyRetrieveTermsOfServiceRequest: PartnerManagedCompanyRetrieveTermsOfServiceRequest; }; export type PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceResponse = { httpMeta: HTTPMetadata; /** * Example response */ partnerManagedCompanyTermsOfServiceResponse?: PartnerManagedCompanyTermsOfServiceResponse | undefined; }; /** @internal */ export declare const PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest$Outbound = { "X-Gusto-API-Version": string; company_uuid: string; "Partner-Managed-Company-Retrieve-Terms-Of-Service-Request": PartnerManagedCompanyRetrieveTermsOfServiceRequest$Outbound; }; /** @internal */ export declare const PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest$outboundSchema: z.ZodType; export declare function putV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequestToJSON(putV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest: PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest): string; /** @internal */ export declare const PutV1PartnerManagedCompaniesCompanyUuidTermsOfServiceResponse$inboundSchema: z.ZodType; export declare function putV1PartnerManagedCompaniesCompanyUuidTermsOfServiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putv1partnermanagedcompaniescompanyuuidtermsofservice.d.ts.map