steam-tradeoffer-manager
Version:
A simple trade offers API for Steam
26 lines (24 loc) • 1.15 kB
JavaScript
module.exports = {
"Invalid": 1,
"Active": 2, // This trade offer has been sent, neither party has acted on it yet.
"Accepted": 3, // The trade offer was accepted by the recipient and items were exchanged.
"Countered": 4, // The recipient made a counter offer
"Expired": 5, // The trade offer was not accepted before the expiration date
"Canceled": 6, // The sender cancelled the offer
"Declined": 7, // The recipient declined the offer
"InvalidItems": 8, // Some of the items in the offer are no longer available (indicated by the missing flag in the output)
"CreatedNeedsConfirmation": 9, // The offer hasn't been sent yet and is awaiting further confirmation
"CanceledBySecondFactor": 10, // Either party canceled the offer via email/mobile confirmation
"InEscrow": 11, // The trade has been placed on hold
"1": "Invalid",
"2": "Active",
"3": "Accepted",
"4": "Countered",
"5": "Expired",
"6": "Canceled",
"7": "Declined",
"8": "InvalidItems",
"9": "CreatedNeedsConfirmation",
"10": "CanceledBySecondFactor",
"11": "InEscrow",
};