UNPKG

@docusign/iam-sdk

Version:

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

15 lines 725 B
import * as z from "zod/v3"; export type RevokeWorkspaceUserDetails = { /** * The optional date in the future to initiate the revocation. If not specified, the revocation will be immediate */ revocationDate?: Date | null | undefined; }; /** @internal */ export type RevokeWorkspaceUserDetails$Outbound = { revocation_date?: string | null | undefined; }; /** @internal */ export declare const RevokeWorkspaceUserDetails$outboundSchema: z.ZodType<RevokeWorkspaceUserDetails$Outbound, z.ZodTypeDef, RevokeWorkspaceUserDetails>; export declare function revokeWorkspaceUserDetailsToJSON(revokeWorkspaceUserDetails: RevokeWorkspaceUserDetails): string; //# sourceMappingURL=revokeworkspaceuserdetails.d.ts.map