UNPKG

@docusign/iam-sdk

Version:

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

41 lines 1.46 kB
import * as z from "zod/v3"; import * as components from "../components/index.js"; export type GetWorkspaceUsersRequest = { /** * The ID of the account */ accountId: string; /** * The ID of the workspace */ workspaceId: string; /** * Number of workspace users 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; /** * Returns workspace users filtered by Name and Email */ filter?: string | undefined; /** * Sorts results. Options are `first_name_asc`, `first_name_desc`, `last_name_asc`, `last_name_desc`, `email_asc`, `email_desc`. Defaults to `last_name_desc` */ sort?: components.GetWorkspaceUsersSortingOption | undefined; }; /** @internal */ export type GetWorkspaceUsersRequest$Outbound = { accountId: string; workspaceId: string; count?: number | undefined; start_position?: number | undefined; filter?: string | undefined; sort?: string | undefined; }; /** @internal */ export declare const GetWorkspaceUsersRequest$outboundSchema: z.ZodType<GetWorkspaceUsersRequest$Outbound, z.ZodTypeDef, GetWorkspaceUsersRequest>; export declare function getWorkspaceUsersRequestToJSON(getWorkspaceUsersRequest: GetWorkspaceUsersRequest): string; //# sourceMappingURL=getworkspaceusers.d.ts.map