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 { 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 DeleteV1CompaniesCompanyIdPayrollsHeaderXGustoAPIVersion: { 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 DeleteV1CompaniesCompanyIdPayrollsHeaderXGustoAPIVersion = ClosedEnum; export type DeleteV1CompaniesCompanyIdPayrollsRequest = { /** * The UUID of the company */ companyId: string; /** * The UUID of the payroll */ payrollId: string; /** * When true, request an asynchronous delete of the payroll. */ async?: boolean | undefined; /** * 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?: DeleteV1CompaniesCompanyIdPayrollsHeaderXGustoAPIVersion | undefined; }; export type DeleteV1CompaniesCompanyIdPayrollsResponse = { httpMeta: HTTPMetadata; }; /** @internal */ export declare const DeleteV1CompaniesCompanyIdPayrollsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type DeleteV1CompaniesCompanyIdPayrollsRequest$Outbound = { company_id: string; payroll_id: string; async?: boolean | undefined; "X-Gusto-API-Version": string; }; /** @internal */ export declare const DeleteV1CompaniesCompanyIdPayrollsRequest$outboundSchema: z.ZodType; export declare function deleteV1CompaniesCompanyIdPayrollsRequestToJSON(deleteV1CompaniesCompanyIdPayrollsRequest: DeleteV1CompaniesCompanyIdPayrollsRequest): string; /** @internal */ export declare const DeleteV1CompaniesCompanyIdPayrollsResponse$inboundSchema: z.ZodType; export declare function deleteV1CompaniesCompanyIdPayrollsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletev1companiescompanyidpayrolls.d.ts.map