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 { PaymentConfigs } from "../components/paymentconfigs.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 GetV1CompanyPaymentConfigsHeaderXGustoAPIVersion: { 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 GetV1CompanyPaymentConfigsHeaderXGustoAPIVersion = ClosedEnum; export type GetV1CompanyPaymentConfigsRequest = { /** * 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?: GetV1CompanyPaymentConfigsHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyUuid: string; }; export type GetV1CompanyPaymentConfigsResponse = { httpMeta: HTTPMetadata; /** * Successful */ paymentConfigs?: PaymentConfigs | undefined; }; /** @internal */ export declare const GetV1CompanyPaymentConfigsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1CompanyPaymentConfigsRequest$Outbound = { "X-Gusto-API-Version": string; company_uuid: string; }; /** @internal */ export declare const GetV1CompanyPaymentConfigsRequest$outboundSchema: z.ZodType; export declare function getV1CompanyPaymentConfigsRequestToJSON(getV1CompanyPaymentConfigsRequest: GetV1CompanyPaymentConfigsRequest): string; /** @internal */ export declare const GetV1CompanyPaymentConfigsResponse$inboundSchema: z.ZodType; export declare function getV1CompanyPaymentConfigsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1companypaymentconfigs.d.ts.map