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 PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceHeaderXGustoAPIVersion: { 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 PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceHeaderXGustoAPIVersion = ClosedEnum; export type PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceRequest = { /** * 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?: PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceHeaderXGustoAPIVersion | undefined; partnerManagedCompanyRetrieveTermsOfServiceRequest: PartnerManagedCompanyRetrieveTermsOfServiceRequest; }; export type PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceResponse = { httpMeta: HTTPMetadata; /** * Example response */ partnerManagedCompanyTermsOfServiceResponse?: PartnerManagedCompanyTermsOfServiceResponse | undefined; }; /** @internal */ export declare const PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceRequest$Outbound = { company_uuid: string; "X-Gusto-API-Version": string; "Partner-Managed-Company-Retrieve-Terms-Of-Service-Request": PartnerManagedCompanyRetrieveTermsOfServiceRequest$Outbound; }; /** @internal */ export declare const PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceRequest$outboundSchema: z.ZodType; export declare function postPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceRequestToJSON(postPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceRequest: PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceRequest): string; /** @internal */ export declare const PostPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceResponse$inboundSchema: z.ZodType; export declare function postPartnerManagedCompaniesCompanyUuidRetrieveTermsOfServiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postpartnermanagedcompaniescompanyuuidretrievetermsofservice.d.ts.map