sendMessage

Post a new message

Sends an email message to the Customer with Id from the parameters and saves the message in the database.

suspend fun sendMessage(message: ApiRequestMessage, token: String): ResponseHolder<Any?> {
    return OtherRequests(baseUrl, activity).sendMessage(
        token,
        schemeId,
        message
    )
}