UNPKG

@docusign/iam-sdk

Version:

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

26 lines 1.23 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BrandColor } from "./brandcolor.js"; import { BrandLogos } from "./brandlogos.js"; /** * The brand details set for a workspace */ export type UpdateWorkspaceBrandResponse = { brandId?: string | null | undefined; brandName?: string | null | undefined; brandCompany?: string | null | undefined; colors: Array<BrandColor> | null; logos?: BrandLogos | undefined; brandLanguages: Array<string> | null; defaultBrandLanguage?: string | null | undefined; isSendingDefault?: boolean | undefined; isSigningDefault?: boolean | undefined; primaryLogoId?: string | null | undefined; secondaryLogoId?: string | null | undefined; emailLogoId?: string | null | undefined; }; /** @internal */ export declare const UpdateWorkspaceBrandResponse$inboundSchema: z.ZodType<UpdateWorkspaceBrandResponse, z.ZodTypeDef, unknown>; export declare function updateWorkspaceBrandResponseFromJSON(jsonString: string): SafeParseResult<UpdateWorkspaceBrandResponse, SDKValidationError>; //# sourceMappingURL=updateworkspacebrandresponse.d.ts.map