leaveScheme

Customer leave scheme by id

This function removes the customer with Id from the parameters, to the scheme with Id from the parameters.

suspend fun leaveScheme(
    token: String,
    customerId: String
): ResponseHolder<Any?> {
    return CustomerRequests(baseUrl, activity).leaveScheme(
        token = token,
        schemeId = schemeId,
        customerId = customerId
    )
}