steam-user
Version:
Steam client for Individual and AnonUser Steam account types
32 lines (28 loc) • 593 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 ERemoteDeviceAuthorizationResult = {
"Success": 0,
"Denied": 1,
"NotLoggedIn": 2,
"Offline": 3,
"Busy": 4,
"InProgress": 5,
"TimedOut": 6,
"Failed": 7,
"Canceled": 8,
// Value-to-name mapping for convenience
"0": "Success",
"1": "Denied",
"2": "NotLoggedIn",
"3": "Offline",
"4": "Busy",
"5": "InProgress",
"6": "TimedOut",
"7": "Failed",
"8": "Canceled",
};
module.exports = ERemoteDeviceAuthorizationResult;