UNPKG

@docusign/iam-sdk

Version:

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

16 lines 654 B
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { safeParse } from "../../lib/schemas.js"; import * as types from "../../types/primitives.js"; /** @internal */ export const BrandLogos$inboundSchema = z.object({ primary: z.nullable(types.string()).optional(), secondary: z.nullable(types.string()).optional(), email: z.nullable(types.string()).optional(), }); export function brandLogosFromJSON(jsonString) { return safeParse(jsonString, (x) => BrandLogos$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'BrandLogos' from JSON`); } //# sourceMappingURL=brandlogos.js.map