/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { ClientSDK } from "../lib/sdks.js"; import { Applicants } from "./applicants.js"; import { Applications } from "./applications.js"; import { Jobs } from "./jobs.js"; export class Ats extends ClientSDK { private _jobs?: Jobs; get jobs(): Jobs { return (this._jobs ??= new Jobs(this._options)); } private _applicants?: Applicants; get applicants(): Applicants { return (this._applicants ??= new Applicants(this._options)); } private _applications?: Applications; get applications(): Applications { return (this._applications ??= new Applications(this._options)); } }