IProfileService

interface IProfileService

Functions

Link copied to clipboard
@GET(value = "profile/{licence}/malls/{mapstedUid}")
abstract fun getFavoriteMalls(@Path(value = "licence") licence: String, @Path(value = "mapstedUid") mapstedUid: String): Call<FavoriteMallsResponse>
Link copied to clipboard
@GET(value = "profile/{licence}/stores/{mapstedUid}")
abstract fun getFavoriteStores(@Path(value = "licence") licence: String, @Path(value = "mapstedUid") mapstedUid: String): Call<FavoriteStoresResponse>
Link copied to clipboard
@FormUrlEncoded
@POST(value = "profile/{licence}/reset/initiate")
abstract fun resetPassword(@Path(value = "licence") licence: String, @Field(value = "Email") email: String): Call<Any>
Link copied to clipboard
@POST(value = "profile/{licence}/malls/{mapstedUid}")
abstract fun saveFavoriteMalls(@Path(value = "licence") licence: String, @Path(value = "mapstedUid") mapstedUid: String, @Body malls: FavoriteMalls): Call<Any>
Link copied to clipboard
@POST(value = "profile/{licence}/stores/{mapstedUid}")
abstract fun saveFavoriteStores(@Path(value = "licence") licence: String, @Path(value = "mapstedUid") mapstedUid: String, @Body stores: FavoriteStores): Call<Any>
Link copied to clipboard
@PUT(value = "profile/{licence}/update/{mapstedUid}")
abstract fun updateProfile(@Path(value = "licence") licence: String, @Path(value = "mapstedUid") mapstedUid: String, @Body profile: Profile): Call<Any>