import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { Admin } from "../components/admin.js"; import { AdminCreateRequest, AdminCreateRequest$Outbound } from "../components/admincreaterequest.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 PostV1CompaniesCompanyIdAdminsHeaderXGustoAPIVersion: { 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 PostV1CompaniesCompanyIdAdminsHeaderXGustoAPIVersion = ClosedEnum; export type PostV1CompaniesCompanyIdAdminsRequest = { /** * 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?: PostV1CompaniesCompanyIdAdminsHeaderXGustoAPIVersion | undefined; /** * The UUID of the company */ companyId: string; adminCreateRequest: AdminCreateRequest; }; export type PostV1CompaniesCompanyIdAdminsResponse = { httpMeta: HTTPMetadata; /** * Success */ admin?: Admin | undefined; }; /** @internal */ export declare const PostV1CompaniesCompanyIdAdminsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostV1CompaniesCompanyIdAdminsRequest$Outbound = { "X-Gusto-API-Version": string; company_id: string; "Admin-Create-Request": AdminCreateRequest$Outbound; }; /** @internal */ export declare const PostV1CompaniesCompanyIdAdminsRequest$outboundSchema: z.ZodType; export declare function postV1CompaniesCompanyIdAdminsRequestToJSON(postV1CompaniesCompanyIdAdminsRequest: PostV1CompaniesCompanyIdAdminsRequest): string; /** @internal */ export declare const PostV1CompaniesCompanyIdAdminsResponse$inboundSchema: z.ZodType; export declare function postV1CompaniesCompanyIdAdminsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postv1companiescompanyidadmins.d.ts.map