File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
articles/communication-services/how-tos/calling-sdk/includes/events Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -323,6 +323,37 @@ call.on('mutedByOthers', () => {
323
323
});
324
324
` ` `
325
325
326
+ ### Event: ` callerInfoChanged`
327
+
328
+ The ` callerInfoChanged` event happens when caller information was updated.
329
+
330
+ **How might your application react to the event?**
331
+ Application can update caller information.
332
+
333
+ **Code Sample:**
334
+
335
+ ` ` ` javascript
336
+ call .on (' callerInfoChanged' , () => {
337
+ showCallerInfo (call .callerInfo )
338
+ });
339
+ ` ` `
340
+
341
+ ### Event: ` transferorInfoChanged`
342
+
343
+ The ` transferorInfoChanged` event happens when transferor information was updated.
344
+
345
+ **How might your application react to the event?**
346
+ Application can update transferor information.
347
+
348
+ **Code Sample:**
349
+
350
+ ` ` ` javascript
351
+ call .on (' transferorInfoChanged' , () => {
352
+ showTransferorInfo (call .transferorInfo )
353
+ });
354
+ ` ` `
355
+
356
+
326
357
<!---- RemoteParticipant ---->
327
358
## Events on the ` RemoteParticipant` object
328
359
You can’t perform that action at this time.
0 commit comments