@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
23 lines • 822 B
JavaScript
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import { ClientSDK } from "../lib/sdks.js";
import { Auth } from "./auth.js";
import { ConnectedFields } from "./connectedfields.js";
import { Maestro } from "./maestro.js";
import { Navigator } from "./navigator.js";
export class IamClient extends ClientSDK {
get auth() {
return (this._auth ?? (this._auth = new Auth(this._options)));
}
get maestro() {
return (this._maestro ?? (this._maestro = new Maestro(this._options)));
}
get navigator() {
return (this._navigator ?? (this._navigator = new Navigator(this._options)));
}
get connectedFields() {
return (this._connectedFields ?? (this._connectedFields = new ConnectedFields(this._options)));
}
}
//# sourceMappingURL=sdk.js.map