@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
30 lines • 1.37 kB
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { WorkspaceUserSummary } from "./workspaceusersummary.js";
export type GetWorkspaceUsersResponse = {
/**
* The user summary list. Includes the ID, name, and metadata such as the role ID and role name
*/
users: Array<WorkspaceUserSummary> | null;
/**
* The number of users returned in the response. Always equal or less than the `count` of the request
*/
resultSetSize?: number | null | undefined;
/**
* Position of the first item in the total results
*/
startPosition?: number | null | undefined;
/**
* Position of the last item in the total results
*/
endPosition?: number | null | undefined;
/**
* The total number of users in the workspace applicable to the request regardless of pagination. It may not always be computed
*/
totalRowCount?: number | null | undefined;
};
/** @internal */
export declare const GetWorkspaceUsersResponse$inboundSchema: z.ZodType<GetWorkspaceUsersResponse, z.ZodTypeDef, unknown>;
export declare function getWorkspaceUsersResponseFromJSON(jsonString: string): SafeParseResult<GetWorkspaceUsersResponse, SDKValidationError>;
//# sourceMappingURL=getworkspaceusersresponse.d.ts.map