Variable CreateUserPropsConst
CreateUserProps: ZodObject<{
accountEnabled: ZodBoolean;
displayName: ZodString;
mailNickname: ZodString;
passwordProfile: ZodObject<{
forceChangePasswordNextSignIn: ZodBoolean;
password: ZodString;
}, "strip", ZodTypeAny, {
forceChangePasswordNextSignIn?: boolean;
password?: string;
}, {
forceChangePasswordNextSignIn?: boolean;
password?: string;
}>;
userPrincipalName: ZodString;
}, "strip", ZodTypeAny, {
accountEnabled?: boolean;
displayName?: string;
mailNickname?: string;
passwordProfile?: {
forceChangePasswordNextSignIn?: boolean;
password?: string;
};
userPrincipalName?: string;
}, {
accountEnabled?: boolean;
displayName?: string;
mailNickname?: string;
passwordProfile?: {
forceChangePasswordNextSignIn?: boolean;
password?: string;
};
userPrincipalName?: string;
}> = ...