UNPKG

@docusign/iam-sdk

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.

20 lines (16 loc) 519 B
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { ClientSDK } from "../lib/sdks.js"; import { Agreements } from "./agreements.js"; import { BulkJob } from "./bulkjob.js"; export class AgreementManager extends ClientSDK { private _agreements?: Agreements; get agreements(): Agreements { return (this._agreements ??= new Agreements(this._options)); } private _bulkJob?: BulkJob; get bulkJob(): BulkJob { return (this._bulkJob ??= new BulkJob(this._options)); } }