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 { PayScheduleShow } from "../components/payscheduleshow.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 GetV1CompaniesCompanyIdPaySchedulesHeaderXGustoAPIVersion: { 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 GetV1CompaniesCompanyIdPaySchedulesHeaderXGustoAPIVersion = ClosedEnum; export type GetV1CompaniesCompanyIdPaySchedulesRequest = { /** * 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?: GetV1CompaniesCompanyIdPaySchedulesHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyId: string; /** * The page that is requested. When unspecified, will load all objects unless endpoint forces pagination. */ page?: number | undefined; /** * Number of objects per page. For majority of endpoints will default to 25 */ per?: number | undefined; }; export type GetV1CompaniesCompanyIdPaySchedulesResponse = { httpMeta: HTTPMetadata; /** * Successful */ payScheduleShowResponse?: Array | undefined; }; /** @internal */ export declare const GetV1CompaniesCompanyIdPaySchedulesHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1CompaniesCompanyIdPaySchedulesRequest$Outbound = { "X-Gusto-API-Version": string; company_id: string; page?: number | undefined; per?: number | undefined; }; /** @internal */ export declare const GetV1CompaniesCompanyIdPaySchedulesRequest$outboundSchema: z.ZodType; export declare function getV1CompaniesCompanyIdPaySchedulesRequestToJSON(getV1CompaniesCompanyIdPaySchedulesRequest: GetV1CompaniesCompanyIdPaySchedulesRequest): string; /** @internal */ export declare const GetV1CompaniesCompanyIdPaySchedulesResponse$inboundSchema: z.ZodType; export declare function getV1CompaniesCompanyIdPaySchedulesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1companiescompanyidpayschedules.d.ts.map