WoW:API GetInboxInvoiceInfo

From AddOn Studio
Revision as of 16:22, 26 January 2006 by WoWWiki>Xtrochu (Added basic API description)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
GetInboxInvoiceInfo(index) -Documentation by user:Xtrochu -
invoiceType, itemName, playerName, bid, buyout, deposit, consignment = GetInboxInvoiceInfo(index);

Returns information about an auction house invoice.


Arguments
(index)
index
Number - the index of the message (1 is the first message)

Returns

invoiceType, itemName, playerName, bid, buyout, deposit, consignment

invoiceType
String - type of invoice ("buyer" is a known value, "seller" probably the other ?).
itemName
String - The name of the item sold/bought.
playerName
Boolean - The player that sold/bought the item.
bid
Number - The amount of money bid on the item.
buyout
Number - The amount of money set as buyout for the auction.
deposit
Number - The amount paid as deposit for the auction.
consignment
Number - The amount kept for the auction by the auction house as consignment.

Template:WoW API