/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: b9e219e34d35 */ import { ClientSDK } from "../lib/sdks.js"; import { Policies } from "./policies.js"; import { Reports } from "./reports.js"; export class Data extends ClientSDK { private _policies?: Policies; get policies(): Policies { return (this._policies ??= new Policies(this._options)); } private _reports?: Reports; get reports(): Reports { return (this._reports ??= new Reports(this._options)); } }