createAndSendVideoConferenceLink

suspend fun createAndSendVideoConferenceLink(    context: Context,     conversationId: Int?,     title: String?,     description: String?,     startDatetimeStamp: Long? = null,     endDateTimeStamp: Long? = null): ApiResult<Int>

Call this method to create and send a new conference link for an existing conversation.

This method does not create a new conversation if not exist

This method does not allow : a none existing conversation

Return

a ApiResult.Success with the ID of the message if the link created and sent successfully or else will return ApiResult.Error if not

Parameters

context

The application context

conversationId

The identifier of the current conversation.

title

the title of the video conference link

description

the description of the video conference link

startDatetimeStamp

The start date time stamp of the video conference scheduling link attachment.

endDateTimeStamp

The end date time stamp of the video conference scheduling link attachment.