Package ai.nexconn.call.api
Interface INCCallLogInfo
public interface INCCallLogInfo
Paginated call log result.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the list of call logs.longReturns the pagination sync timestamp in milliseconds.booleanReturns whether more call logs are available.
-
Method Details
-
getCallLogList
ArrayList<INCCallLog> getCallLogList()Returns the list of call logs. -
isHasMore
boolean isHasMore()Returns whether more call logs are available. -
getSyncTime
long getSyncTime()Returns the pagination sync timestamp in milliseconds.When
isHasMore()is true, this value can be passed again toNCCallEngine.getHistoryCallLogs(long, int, NCCallLogOrder)to fetch the next page.
-