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 { PayScheduleCreateRequest, PayScheduleCreateRequest$Outbound } from "../components/payschedulecreaterequest.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 PostV1CompaniesCompanyIdPaySchedulesHeaderXGustoAPIVersion: { 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 PostV1CompaniesCompanyIdPaySchedulesHeaderXGustoAPIVersion = ClosedEnum; export type PostV1CompaniesCompanyIdPaySchedulesRequest = { /** * 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?: PostV1CompaniesCompanyIdPaySchedulesHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyId: string; payScheduleCreateRequest: PayScheduleCreateRequest; }; export type PostV1CompaniesCompanyIdPaySchedulesResponse = { httpMeta: HTTPMetadata; /** * Created */ payScheduleShow?: PayScheduleShow | undefined; }; /** @internal */ export declare const PostV1CompaniesCompanyIdPaySchedulesHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostV1CompaniesCompanyIdPaySchedulesRequest$Outbound = { "X-Gusto-API-Version": string; company_id: string; "Pay-Schedule-Create-Request": PayScheduleCreateRequest$Outbound; }; /** @internal */ export declare const PostV1CompaniesCompanyIdPaySchedulesRequest$outboundSchema: z.ZodType; export declare function postV1CompaniesCompanyIdPaySchedulesRequestToJSON(postV1CompaniesCompanyIdPaySchedulesRequest: PostV1CompaniesCompanyIdPaySchedulesRequest): string; /** @internal */ export declare const PostV1CompaniesCompanyIdPaySchedulesResponse$inboundSchema: z.ZodType; export declare function postV1CompaniesCompanyIdPaySchedulesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postv1companiescompanyidpayschedules.d.ts.map