tray/src/messenger/webim/js/source/chat/mibewapi_chat_interaction.js
Dmitriy Simushev 46ce6f2a91 Update MibewAPICoreInteraction
Move it to separate file and rename it to MibewAPIChatInteraction
2013-03-13 15:32:45 +00:00

31 lines
662 B
JavaScript

/**
* @preserve This file is part of Mibew Messenger project.
* http://mibew.org
*
* Copyright (c) 2005-2011 Mibew Messenger Community
* License: http://mibew.org/license.php
*/
/**
* Represents Chat Window to core interaction type
*
* @constructor
*/
MibewAPIChatInteraction = function() {
this.obligatoryArguments = {
'*': {
'threadId': null,
'token': null,
'return': {},
'references': {}
},
'result': {
'errorCode': 0
}
};
this.reservedFunctionNames = [
'result'
];
}
MibewAPIChatInteraction.prototype = new MibewAPIInteraction();