deleteCallLogsForHuntingGroup

abstract fun deleteCallLogsForHuntingGroup(groupId: String?, callLogs: List<GroupCallLog>, listener: RainbowListener<Unit, Unit>? = null)

Deletes specific call logs for a given hunting group.

Removes the specified list of GroupCallLog objects associated with a particular hunting group. Once the deletion is complete, the specified call logs will no longer be available.

If a listener is provided, it will be notified when the deletion operation is complete.

Parameters

groupId

The unique identifier of the hunting group from which the call logs should be deleted. This ID must correspond to a valid hunting group.

callLogs

The list of GroupCallLog objects to be deleted. Each call log in the list must correspond to a valid entry in the specified hunting group's call logs.

listener

An optional RainbowListener that will be notified upon completion of the deletion operation.