Coupon Api
interface CouponApi
Functions
Link copied to clipboard
abstract fun addCouponIdToFavorite(favoriteId: String, couponId: String, sessionToken: String, accessToken: String): Single<FavoriteCoupon>
Link copied to clipboard
abstract fun createFavoriteCoupon(favoriteName: String, couponId: String, sessionToken: String, accessToken: String): Single<FavoriteCoupon>
Link copied to clipboard
abstract fun deleteFavoriteCoupon(favoriteId: String, sessionToken: String, accessToken: String): Completable
Link copied to clipboard
abstract fun getAllFavorites(sessionToken: String, accessToken: String): Single<List<FavoriteCoupon>>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun getGroupCouponInfo(playerId: String, couponId: String, sessionToken: String, accessToken: String): Single<Coupon>
abstract fun getGroupCouponInfo(playerId: String, fundingId: Long, groupPlayId: Long, sessionToken: String, accessToken: String): Single<TemporaryGroupCoupon>
Link copied to clipboard
abstract fun getGroupPlayList(groupId: Long, active: Boolean?, includeGameInformation: Boolean?, sessionToken: String, accessToken: String): Single<List<GroupPlayListItem>>
Link copied to clipboard
abstract fun updateFavoriteCoupon(favoriteId: String, favoriteName: String, sessionToken: String, accessToken: String): Single<FavoriteCoupon>