//#region src/model/UserGroupType.d.ts
/**
* Enum UserGroupType
* @type {{
* "DIRECT": "DIRECT","INDIRECT": "INDIRECT",
* }}
*/
declare const UserGroupTypeStatic: {
"DIRECT": "DIRECT";
"INDIRECT": "INDIRECT";
};
/**
* Enum class UserGroupType.
* @enum {}
* @readonly
*/
declare class UserGroupType {
/**
* Returns a UserGroupType enum value from a Javascript object name.
* @param {Object} data The plain JavaScript object containing the name of the enum value.
* @return {module:model/UserGroupType} The enum UserGroupType value.
*/
static constructFromObject(object: any): any;
/**
* value: "DIRECT"
* @const
*/
DIRECT: string;
/**
* value: "INDIRECT"
* @const
*/
INDIRECT: string;
}
/**
* *
*/
type UserGroupType = any;
//#endregion
export { UserGroupType, UserGroupType as default, UserGroupTypeStatic };