@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
35 lines • 1.2 kB
TypeScript
import * as z from "zod/v3";
export type GetWorkspaceDocumentsRequest = {
/**
* The ID of the account
*/
accountId: string;
/**
* The ID of the workspace
*/
workspaceId: string;
/**
* Number of documents 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;
/**
* Filter documents where Name contains the filter. Defaults to null, to not filter
*/
nameFilter?: string | undefined;
};
/** @internal */
export type GetWorkspaceDocumentsRequest$Outbound = {
accountId: string;
workspaceId: string;
count?: number | undefined;
start_position?: number | undefined;
name_filter?: string | undefined;
};
/** @internal */
export declare const GetWorkspaceDocumentsRequest$outboundSchema: z.ZodType<GetWorkspaceDocumentsRequest$Outbound, z.ZodTypeDef, GetWorkspaceDocumentsRequest>;
export declare function getWorkspaceDocumentsRequestToJSON(getWorkspaceDocumentsRequest: GetWorkspaceDocumentsRequest): string;
//# sourceMappingURL=getworkspacedocuments.d.ts.map