getSmartMSContacts

suspend fun getSmartMSContacts(context: Context): List<STWContact>?

Get All contacts from other departments, other companies and other SmartMs Apps witch are synced with local contacts

Return

List?

Parameters

context
    Context

suspend fun getSmartMSContacts(    context: Context,     search: String? = null,     @IntRange(from = 0) from: Int? = null,     @IntRange(from = 1) pageSize: Int? = null): List<STWContact>?

Get All contacts from other departments, other companies and other SmartMs Apps witch are synced with local contacts

Return

List?

Parameters

context
    Context
search

to get only contacts matching this keyword.
put empty string to get all SmartMS contacts

from

The offset of the first SmartMS contact starting from it will return contact list based on pageSize. Value should be >= 0

pageSize

The max number of SmartMS contacts to be retrieved, 0 will return nothing. Value should be >= 1