Call Detailed Record (CDR)

This topic introduces the functionalities and implementation methods related to Call Detailed Record (CDR) of 'Linkus SDK for iOS'.

Retrieve CDR records

- (NSArray<YLSHistory *> *)historys;

Delete specific CDR records

- (void)historyManagerRemove:(NSArray<YLSHistory *> *)historys;

Delete all the CDR records

- (void)historyManagerRemoveAll;

Mark unread CDR records as read

- (void)checkMissedCalls;

SDK notification callbacks

/**
 *  CDR records change callback
 */
- (void)historyReload:(NSMutableArray<YLSHistory *> *)historys;

/**
 *  Missed call count change callback
 */
- (void)historyMissCallCount:(NSInteger)count;