import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CompanyAttachment } from "../components/companyattachment.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 GetV1CompaniesAttachmentHeaderXGustoAPIVersion: { 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 GetV1CompaniesAttachmentHeaderXGustoAPIVersion = ClosedEnum; export type GetV1CompaniesAttachmentRequest = { /** * 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?: GetV1CompaniesAttachmentHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyId: string; /** * The UUID of the company attachment */ companyAttachmentUuid: string; }; export type GetV1CompaniesAttachmentResponse = { httpMeta: HTTPMetadata; /** * Successful */ companyAttachment?: CompanyAttachment | undefined; }; /** @internal */ export declare const GetV1CompaniesAttachmentHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1CompaniesAttachmentRequest$Outbound = { "X-Gusto-API-Version": string; company_id: string; company_attachment_uuid: string; }; /** @internal */ export declare const GetV1CompaniesAttachmentRequest$outboundSchema: z.ZodType; export declare function getV1CompaniesAttachmentRequestToJSON(getV1CompaniesAttachmentRequest: GetV1CompaniesAttachmentRequest): string; /** @internal */ export declare const GetV1CompaniesAttachmentResponse$inboundSchema: z.ZodType; export declare function getV1CompaniesAttachmentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1companiesattachment.d.ts.map