@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
34 lines • 1.87 kB
TypeScript
import * as z from "zod";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type GetWorkflowInstancesListRequest = {
/**
* The unique identifier of the account.
*/
accountId: string;
workflowId: string;
};
/** @internal */
export declare const GetWorkflowInstancesListRequest$inboundSchema: z.ZodType<GetWorkflowInstancesListRequest, z.ZodTypeDef, unknown>;
/** @internal */
export type GetWorkflowInstancesListRequest$Outbound = {
accountId: string;
workflowId: string;
};
/** @internal */
export declare const GetWorkflowInstancesListRequest$outboundSchema: z.ZodType<GetWorkflowInstancesListRequest$Outbound, z.ZodTypeDef, GetWorkflowInstancesListRequest>;
/**
* @internal
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
*/
export declare namespace GetWorkflowInstancesListRequest$ {
/** @deprecated use `GetWorkflowInstancesListRequest$inboundSchema` instead. */
const inboundSchema: z.ZodType<GetWorkflowInstancesListRequest, z.ZodTypeDef, unknown>;
/** @deprecated use `GetWorkflowInstancesListRequest$outboundSchema` instead. */
const outboundSchema: z.ZodType<GetWorkflowInstancesListRequest$Outbound, z.ZodTypeDef, GetWorkflowInstancesListRequest>;
/** @deprecated use `GetWorkflowInstancesListRequest$Outbound` instead. */
type Outbound = GetWorkflowInstancesListRequest$Outbound;
}
export declare function getWorkflowInstancesListRequestToJSON(getWorkflowInstancesListRequest: GetWorkflowInstancesListRequest): string;
export declare function getWorkflowInstancesListRequestFromJSON(jsonString: string): SafeParseResult<GetWorkflowInstancesListRequest, SDKValidationError>;
//# sourceMappingURL=getworkflowinstanceslist.d.ts.map