steam-user
Version:
Steam client for Individual and AnonUser Steam account types
34 lines (30 loc) • 733 B
JavaScript
/* eslint-disable */
// Auto-generated by generate-enums script on Thu Feb 24 2022 03:38:38 GMT-0500 (Eastern Standard Time)
/**
* @enum
* @readonly
*/
const EChatActionResult = {
"Success": 1,
"Error": 2,
"NotPermitted": 3,
"NotAllowedOnClanMember": 4,
"NotAllowedOnBannedUser": 5,
"NotAllowedOnChatOwner": 6,
"NotAllowedOnSelf": 7,
"ChatDoesntExist": 8,
"ChatFull": 9,
"VoiceSlotsFull": 10,
// Value-to-name mapping for convenience
"1": "Success",
"2": "Error",
"3": "NotPermitted",
"4": "NotAllowedOnClanMember",
"5": "NotAllowedOnBannedUser",
"6": "NotAllowedOnChatOwner",
"7": "NotAllowedOnSelf",
"8": "ChatDoesntExist",
"9": "ChatFull",
"10": "VoiceSlotsFull",
};
module.exports = EChatActionResult;