mirror of
https://github.com/Mibew/design.git
synced 2025-05-15 14:54:22 +03:00
30 lines
705 B
JavaScript
30 lines
705 B
JavaScript
/**
|
|
* @preserve Copyright 2005-2013 the original author or authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License").
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*/
|
|
|
|
/**
|
|
* Represents Invitation waiting Window to core interaction type
|
|
*
|
|
* @constructor
|
|
*/
|
|
MibewAPIInviteInteraction = function() {
|
|
this.obligatoryArguments = {
|
|
'*': {
|
|
'return': {},
|
|
'references': {},
|
|
'visitorId': null
|
|
},
|
|
'result': {
|
|
'errorCode': 0
|
|
}
|
|
};
|
|
|
|
this.reservedFunctionNames = [
|
|
'result'
|
|
];
|
|
}
|
|
MibewAPIInviteInteraction.prototype = new MibewAPIInteraction(); |