import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ContractorPaymentGroupPartnerDisbursements } from "../components/contractorpaymentgrouppartnerdisbursements.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 GetV1ContractorPaymentGroupsIdPartnerDisbursementsHeaderXGustoAPIVersion: { 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 GetV1ContractorPaymentGroupsIdPartnerDisbursementsHeaderXGustoAPIVersion = ClosedEnum; export type GetV1ContractorPaymentGroupsIdPartnerDisbursementsRequest = { /** * The UUID of the contractor payment group */ id: string; /** * 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?: GetV1ContractorPaymentGroupsIdPartnerDisbursementsHeaderXGustoAPIVersion | undefined; }; export type GetV1ContractorPaymentGroupsIdPartnerDisbursementsResponse = { httpMeta: HTTPMetadata; /** * successful */ contractorPaymentGroupPartnerDisbursements?: ContractorPaymentGroupPartnerDisbursements | undefined; }; /** @internal */ export declare const GetV1ContractorPaymentGroupsIdPartnerDisbursementsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1ContractorPaymentGroupsIdPartnerDisbursementsRequest$Outbound = { id: string; "X-Gusto-API-Version": string; }; /** @internal */ export declare const GetV1ContractorPaymentGroupsIdPartnerDisbursementsRequest$outboundSchema: z.ZodType; export declare function getV1ContractorPaymentGroupsIdPartnerDisbursementsRequestToJSON(getV1ContractorPaymentGroupsIdPartnerDisbursementsRequest: GetV1ContractorPaymentGroupsIdPartnerDisbursementsRequest): string; /** @internal */ export declare const GetV1ContractorPaymentGroupsIdPartnerDisbursementsResponse$inboundSchema: z.ZodType; export declare function getV1ContractorPaymentGroupsIdPartnerDisbursementsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1contractorpaymentgroupsidpartnerdisbursements.d.ts.map