import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Object returned when creating a partner managed company */ export type PartnerManagedCompany = { /** * Access token that can be used for OAuth access to the account. Access tokens expire 2 hours after they are issued. */ accessToken?: string | undefined; /** * Refresh token that can be exchanged for a new access token. */ refreshToken?: string | undefined; /** * Gusto's UUID for the company */ companyUuid?: string | undefined; /** * Time of access_token expiration in seconds */ expiresIn?: number | undefined; }; /** @internal */ export declare const PartnerManagedCompany$inboundSchema: z.ZodType; export declare function partnerManagedCompanyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=partnermanagedcompany.d.ts.map