UNPKG

@docusign/iam-sdk

Version:

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

28 lines 1.35 kB
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { workspacesWorkspaceBrandsGetWorkspaceBrand } from "../funcs/workspacesWorkspaceBrandsGetWorkspaceBrand.js"; import { workspacesWorkspaceBrandsUpdateWorkspaceBrand } from "../funcs/workspacesWorkspaceBrandsUpdateWorkspaceBrand.js"; import { ClientSDK } from "../lib/sdks.js"; import { unwrapAsync } from "../types/fp.js"; export class WorkspaceBrands extends ClientSDK { /** * Returns details about the brand set for a workspace * * @remarks * This operation retrieves details about a specific workspace. It returns the brand details such as its unique identifier (ID), name, and metadata such as brand colors and logos. */ async getWorkspaceBrand(request, options) { return unwrapAsync(workspacesWorkspaceBrandsGetWorkspaceBrand(this, request, options)); } /** * Updates brand for an existing workspace * * @remarks * This operation updates brand for a specific workspace. It returns the brand details such as its unique identifier (ID), name, and metadata such as brand colors and logos. */ async updateWorkspaceBrand(request, options) { return unwrapAsync(workspacesWorkspaceBrandsUpdateWorkspaceBrand(this, request, options)); } } //# sourceMappingURL=workspacebrands.js.map