Last active
April 20, 2020 00:41
-
-
Save markchristopherng/cd0ac6a93c3b42da09de805a753944c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface GeoFenceService { | |
/** | |
* Return a list of [GeofencingResponse] awaiting for collection by given dpid | |
*/ | |
@GET("geofencing/v1/articles/{dpid}") | |
fun getGeoFenceArticles(@Path("dpid") dpid: String): Single<List<GeofencingResponse>> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment