getCouponLinked

Get a coupon by id

This function returns aconcrete coupon by the Id passed in the parameters.

suspend fun getCouponLinked(
    id: String,
    token: String
): ResponseHolder<ApiCustomerCouponResultView?> {
    return CouponRequests(baseUrl, activity).getCouponLinked(
        id = id,
        schemeId = schemeId,
        token = token
    )
}