import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ContractorPaymentReceipt } from "../components/contractorpaymentreceipt.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 GetV1ContractorPaymentsContractorPaymentUuidReceiptHeaderXGustoAPIVersion: { 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 GetV1ContractorPaymentsContractorPaymentUuidReceiptHeaderXGustoAPIVersion = ClosedEnum; export type GetV1ContractorPaymentsContractorPaymentUuidReceiptRequest = { /** * 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?: GetV1ContractorPaymentsContractorPaymentUuidReceiptHeaderXGustoAPIVersion | undefined; /** * The UUID of the contractor payment */ contractorPaymentUuid: string; }; export type GetV1ContractorPaymentsContractorPaymentUuidReceiptResponse = { httpMeta: HTTPMetadata; /** * OK */ contractorPaymentReceipt?: ContractorPaymentReceipt | undefined; }; /** @internal */ export declare const GetV1ContractorPaymentsContractorPaymentUuidReceiptHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1ContractorPaymentsContractorPaymentUuidReceiptRequest$Outbound = { "X-Gusto-API-Version": string; contractor_payment_uuid: string; }; /** @internal */ export declare const GetV1ContractorPaymentsContractorPaymentUuidReceiptRequest$outboundSchema: z.ZodType; export declare function getV1ContractorPaymentsContractorPaymentUuidReceiptRequestToJSON(getV1ContractorPaymentsContractorPaymentUuidReceiptRequest: GetV1ContractorPaymentsContractorPaymentUuidReceiptRequest): string; /** @internal */ export declare const GetV1ContractorPaymentsContractorPaymentUuidReceiptResponse$inboundSchema: z.ZodType; export declare function getV1ContractorPaymentsContractorPaymentUuidReceiptResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1contractorpaymentscontractorpaymentuuidreceipt.d.ts.map