UNPKG

@docusign/iam-sdk

Version:

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

25 lines 849 B
import * as z from "zod/v3"; export type GetWorkspacesRequest = { /** * The ID of the account */ accountId: string; /** * Number of workspaces to return. Defaults to the maximum which is 100 */ count?: number | undefined; /** * Position of the first item in the total results. Defaults to 0 */ startPosition?: number | undefined; }; /** @internal */ export type GetWorkspacesRequest$Outbound = { accountId: string; count?: number | undefined; start_position?: number | undefined; }; /** @internal */ export declare const GetWorkspacesRequest$outboundSchema: z.ZodType<GetWorkspacesRequest$Outbound, z.ZodTypeDef, GetWorkspacesRequest>; export declare function getWorkspacesRequestToJSON(getWorkspacesRequest: GetWorkspacesRequest): string; //# sourceMappingURL=getworkspaces.d.ts.map