import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GustoEmbeddedError } from "../models/errors/gustoembeddederror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { NotFoundErrorObject } from "../models/errors/notfounderrorobject.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { GetCompaniesCompanyUuidSuspensionsRequest, GetCompaniesCompanyUuidSuspensionsResponse } from "../models/operations/getcompaniescompanyuuidsuspensions.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get suspensions for this company * * @remarks * Get existing suspension records for this company. A company may have multiple suspension records if they have suspended their Gusto account more than once. * * >📘 To check if company is already suspended * > * > To determine if a company is _currently_ suspended, use the `is_suspended` and `company_status` fields in the [Get a company](https://docs.gusto.com/embedded-payroll/reference/get-v1-companies) endpoint. * * scope: `company_suspensions:read` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function companiesSuspensionsGet(client: GustoEmbeddedCore, request: GetCompaniesCompanyUuidSuspensionsRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=companiesSuspensionsGet.d.ts.map