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 { 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 GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceHeaderXGustoAPIVersion: { 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 GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceHeaderXGustoAPIVersion = ClosedEnum; export type GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest = { /** * 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?: GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyUuid: string; }; export type GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceResponse = { httpMeta: HTTPMetadata; /** * Example response */ partnerManagedCompanyTermsOfServiceResponse?: PartnerManagedCompanyTermsOfServiceResponse | undefined; }; /** @internal */ export declare const GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest$Outbound = { "X-Gusto-API-Version": string; company_uuid: string; }; /** @internal */ export declare const GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest$outboundSchema: z.ZodType; export declare function getV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequestToJSON(getV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest: GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceRequest): string; /** @internal */ export declare const GetV1PartnerManagedCompaniesCompanyUuidTermsOfServiceResponse$inboundSchema: z.ZodType; export declare function getV1PartnerManagedCompaniesCompanyUuidTermsOfServiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1partnermanagedcompaniescompanyuuidtermsofservice.d.ts.map