import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { GeneralLedgerReport } from "../components/generalledgerreport.js"; import { GeneralLedgerReportBody, GeneralLedgerReportBody$Outbound } from "../components/generalledgerreportbody.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 PostPayrollsPayrollUuidReportsGeneralLedgerHeaderXGustoAPIVersion: { 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 PostPayrollsPayrollUuidReportsGeneralLedgerHeaderXGustoAPIVersion = ClosedEnum; export type PostPayrollsPayrollUuidReportsGeneralLedgerRequest = { /** * 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?: PostPayrollsPayrollUuidReportsGeneralLedgerHeaderXGustoAPIVersion | undefined; /** * The UUID of the payroll */ payrollUuid: string; generalLedgerReportBody: GeneralLedgerReportBody; }; export type PostPayrollsPayrollUuidReportsGeneralLedgerResponse = { httpMeta: HTTPMetadata; /** * OK */ generalLedgerReport?: GeneralLedgerReport | undefined; }; /** @internal */ export declare const PostPayrollsPayrollUuidReportsGeneralLedgerHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostPayrollsPayrollUuidReportsGeneralLedgerRequest$Outbound = { "X-Gusto-API-Version": string; payroll_uuid: string; "General-Ledger-Report-Body": GeneralLedgerReportBody$Outbound; }; /** @internal */ export declare const PostPayrollsPayrollUuidReportsGeneralLedgerRequest$outboundSchema: z.ZodType; export declare function postPayrollsPayrollUuidReportsGeneralLedgerRequestToJSON(postPayrollsPayrollUuidReportsGeneralLedgerRequest: PostPayrollsPayrollUuidReportsGeneralLedgerRequest): string; /** @internal */ export declare const PostPayrollsPayrollUuidReportsGeneralLedgerResponse$inboundSchema: z.ZodType; export declare function postPayrollsPayrollUuidReportsGeneralLedgerResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postpayrollspayrolluuidreportsgeneralledger.d.ts.map