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 { PayrollShow } from "../components/payrollshow.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 GetV1CompaniesCompanyIdPayrollsPayrollIdHeaderXGustoAPIVersion: { 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 GetV1CompaniesCompanyIdPayrollsPayrollIdHeaderXGustoAPIVersion = ClosedEnum; export declare const GetV1CompaniesCompanyIdPayrollsPayrollIdQueryParamInclude: { readonly Benefits: "benefits"; readonly Deductions: "deductions"; readonly Taxes: "taxes"; readonly PayrollStatusMeta: "payroll_status_meta"; readonly Totals: "totals"; readonly RiskBlockers: "risk_blockers"; readonly Reversals: "reversals"; readonly PayrollTaxes: "payroll_taxes"; }; export type GetV1CompaniesCompanyIdPayrollsPayrollIdQueryParamInclude = ClosedEnum; export type GetV1CompaniesCompanyIdPayrollsPayrollIdRequest = { /** * 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?: GetV1CompaniesCompanyIdPayrollsPayrollIdHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyId: string; /** * The UUID of the payroll */ payrollId: string; /** * Include the requested attribute in the response, for multiple attributes comma separate the values, i.e. `?include=benefits,deductions,taxes` */ include?: Array | undefined; /** * 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; /** * Sort employee compensations by one or more fields. Options: first_name, last_name. Append `:asc` or `:desc` to specify direction (e.g., `last_name:asc` or `last_name:asc,first_name:asc`). Defaults to ascending. */ sortBy?: string | undefined; }; export type GetV1CompaniesCompanyIdPayrollsPayrollIdResponse = { httpMeta: HTTPMetadata; /** * successful with wait_for_reverse_wire credit blocker */ payrollShow?: PayrollShow | undefined; }; /** @internal */ export declare const GetV1CompaniesCompanyIdPayrollsPayrollIdHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetV1CompaniesCompanyIdPayrollsPayrollIdQueryParamInclude$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1CompaniesCompanyIdPayrollsPayrollIdRequest$Outbound = { "X-Gusto-API-Version": string; company_id: string; payroll_id: string; include?: Array | undefined; page?: number | undefined; per?: number | undefined; sort_by?: string | undefined; }; /** @internal */ export declare const GetV1CompaniesCompanyIdPayrollsPayrollIdRequest$outboundSchema: z.ZodType; export declare function getV1CompaniesCompanyIdPayrollsPayrollIdRequestToJSON(getV1CompaniesCompanyIdPayrollsPayrollIdRequest: GetV1CompaniesCompanyIdPayrollsPayrollIdRequest): string; /** @internal */ export declare const GetV1CompaniesCompanyIdPayrollsPayrollIdResponse$inboundSchema: z.ZodType; export declare function getV1CompaniesCompanyIdPayrollsPayrollIdResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1companiescompanyidpayrollspayrollid.d.ts.map