Created
December 15, 2018 07:09
-
-
Save pjwelcome/7719e8ef0d9f8b6adb787e20904ad355 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
internal interface Endpoint { | |
@Headers("Content-Type: application/json") | |
@POST("projects/{ProjectName}/locations/{region}/models/{AutoML_Model_ID}:predict") | |
fun classifyImage(@Body body: ModelRequestBody): Call<PayloadResult> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment