/** *
The user ID and user fields to update, used with the BatchUpdateUser action.
*/ export interface _UpdateUserRequestItem { /** *The user ID.
*/ UserId: string; /** *The user license type.
*/ LicenseType?: "Basic" | "Plus" | "Pro" | "ProTrial" | string; } export declare type _UnmarshalledUpdateUserRequestItem = _UpdateUserRequestItem;