export declare enum BuyStoreItemErrorCode { /** Generic server error / control-group rejection */ SHOP_FAILED_GENERIC = 1, /** Label mismatch detected before purchase transaction */ SHOP_WRONG_LABEL_PRECHECK = 106, /** User don't have enough points on balance */ SHOP_NO_BALANCE = 11000, /** Wrong shop item id */ SHOP_WRONG_LABEL = 11001, /** Failed to buy bonus item, probably something wrong with the bonus configuration. */ SHOP_FAILED_TO_BUY_BONUS = 11002, /** Failed to buy store item because segment conditions are set by operator for specific CRM item */ SHOP_FAILED_TO_BUY_SHOP_ITEM_CONDITION = 11003, /** Segment conditions are set by operator for specific CRM item and user not matching to this conditions */ SHOP_FAILED_TO_BUY_SHOP_ITEM_CONDITION_PURSHASE = 11004, /** Failed to buy matching bonus item */ SHOP_FAILED_TO_BUY_MATCHING_BONUS = 11005, /** Failed to buy item because of limit of max items is reached */ SHOP_FAILED_MAX_BOUGHT_ITEMS_REACHED = 11006, /** Bonus was issued but a follow-up redemption step failed */ SHOP_FAILED_BONUS_REDEMPTION = 11007, /** Failed to buy item because no more items are available */ SHOP_FAILED_POOL_EMPTY = 11009, /** User doesn't have enough gems on balance */ SHOP_NO_BALANCE_GEMS = 11011, /** User doesn't have enough diamonds on balance */ SHOP_NO_BALANCE_DIAMONDS = 11012, /** Failed to buy item because of purchase limitation */ SHOP_FAILED_PURCHASE_LIMITATION = 11014, /** Uncaught server exception */ SHOP_UNEXPECTED_EXCEPTION = 9999 }