import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { EarningTypeList } from "../components/earningtypelist.js"; import { HTTPMetadata } from "../components/httpmetadata.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 GetV1CompaniesCompanyIdEarningTypesHeaderXGustoAPIVersion: { 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 GetV1CompaniesCompanyIdEarningTypesHeaderXGustoAPIVersion = ClosedEnum; export type GetV1CompaniesCompanyIdEarningTypesRequest = { /** * 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?: GetV1CompaniesCompanyIdEarningTypesHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyId: string; }; export type GetV1CompaniesCompanyIdEarningTypesResponse = { httpMeta: HTTPMetadata; /** * Success */ earningTypeList?: EarningTypeList | undefined; }; /** @internal */ export declare const GetV1CompaniesCompanyIdEarningTypesHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1CompaniesCompanyIdEarningTypesRequest$Outbound = { "X-Gusto-API-Version": string; company_id: string; }; /** @internal */ export declare const GetV1CompaniesCompanyIdEarningTypesRequest$outboundSchema: z.ZodType; export declare function getV1CompaniesCompanyIdEarningTypesRequestToJSON(getV1CompaniesCompanyIdEarningTypesRequest: GetV1CompaniesCompanyIdEarningTypesRequest): string; /** @internal */ export declare const GetV1CompaniesCompanyIdEarningTypesResponse$inboundSchema: z.ZodType; export declare function getV1CompaniesCompanyIdEarningTypesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1companiescompanyidearningtypes.d.ts.map